├── Dockerfile ├── LICENSE ├── README.md ├── bot ├── Dockerfile ├── main.py ├── requirements.txt └── webgram │ ├── __init__.py │ ├── bare.py │ ├── config.py │ └── stream_tools.py ├── docker-compose.yml ├── heroku.yml ├── nginx ├── Dockerfile └── vhost.conf └── web ├── Dockerfile ├── main.py ├── requirements.txt └── webgram ├── __init__.py ├── app.html ├── bare.py ├── checkers.py ├── config.py ├── stream_tools.py └── streamer.py /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musa-42/streamer_file/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musa-42/streamer_file/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # dlstar 2 | 3 | The new version : https://github.com/musa-42/stream-cloud 4 | -------------------------------------------------------------------------------- /bot/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musa-42/streamer_file/HEAD/bot/Dockerfile -------------------------------------------------------------------------------- /bot/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musa-42/streamer_file/HEAD/bot/main.py -------------------------------------------------------------------------------- /bot/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musa-42/streamer_file/HEAD/bot/requirements.txt -------------------------------------------------------------------------------- /bot/webgram/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musa-42/streamer_file/HEAD/bot/webgram/__init__.py -------------------------------------------------------------------------------- /bot/webgram/bare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musa-42/streamer_file/HEAD/bot/webgram/bare.py -------------------------------------------------------------------------------- /bot/webgram/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musa-42/streamer_file/HEAD/bot/webgram/config.py -------------------------------------------------------------------------------- /bot/webgram/stream_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musa-42/streamer_file/HEAD/bot/webgram/stream_tools.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musa-42/streamer_file/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musa-42/streamer_file/HEAD/heroku.yml -------------------------------------------------------------------------------- /nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musa-42/streamer_file/HEAD/nginx/Dockerfile -------------------------------------------------------------------------------- /nginx/vhost.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musa-42/streamer_file/HEAD/nginx/vhost.conf -------------------------------------------------------------------------------- /web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musa-42/streamer_file/HEAD/web/Dockerfile -------------------------------------------------------------------------------- /web/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musa-42/streamer_file/HEAD/web/main.py -------------------------------------------------------------------------------- /web/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musa-42/streamer_file/HEAD/web/requirements.txt -------------------------------------------------------------------------------- /web/webgram/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musa-42/streamer_file/HEAD/web/webgram/__init__.py -------------------------------------------------------------------------------- /web/webgram/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musa-42/streamer_file/HEAD/web/webgram/app.html -------------------------------------------------------------------------------- /web/webgram/bare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musa-42/streamer_file/HEAD/web/webgram/bare.py -------------------------------------------------------------------------------- /web/webgram/checkers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musa-42/streamer_file/HEAD/web/webgram/checkers.py -------------------------------------------------------------------------------- /web/webgram/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musa-42/streamer_file/HEAD/web/webgram/config.py -------------------------------------------------------------------------------- /web/webgram/stream_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musa-42/streamer_file/HEAD/web/webgram/stream_tools.py -------------------------------------------------------------------------------- /web/webgram/streamer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/musa-42/streamer_file/HEAD/web/webgram/streamer.py --------------------------------------------------------------------------------