├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.md ├── app ├── channel_rules.py ├── config_manager.py ├── m3u_generator.py ├── main.py ├── network_test.py ├── source_manager.py ├── stream_tester.py └── test_http.py ├── config ├── channel_rules.yml └── config.ini ├── dockrun.sh ├── nginx.conf ├── requirements.txt └── start.sh /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanshandalishuishou/live-source-manager/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanshandalishuishou/live-source-manager/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanshandalishuishou/live-source-manager/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanshandalishuishou/live-source-manager/HEAD/README.md -------------------------------------------------------------------------------- /app/channel_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanshandalishuishou/live-source-manager/HEAD/app/channel_rules.py -------------------------------------------------------------------------------- /app/config_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanshandalishuishou/live-source-manager/HEAD/app/config_manager.py -------------------------------------------------------------------------------- /app/m3u_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanshandalishuishou/live-source-manager/HEAD/app/m3u_generator.py -------------------------------------------------------------------------------- /app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanshandalishuishou/live-source-manager/HEAD/app/main.py -------------------------------------------------------------------------------- /app/network_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanshandalishuishou/live-source-manager/HEAD/app/network_test.py -------------------------------------------------------------------------------- /app/source_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanshandalishuishou/live-source-manager/HEAD/app/source_manager.py -------------------------------------------------------------------------------- /app/stream_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanshandalishuishou/live-source-manager/HEAD/app/stream_tester.py -------------------------------------------------------------------------------- /app/test_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanshandalishuishou/live-source-manager/HEAD/app/test_http.py -------------------------------------------------------------------------------- /config/channel_rules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanshandalishuishou/live-source-manager/HEAD/config/channel_rules.yml -------------------------------------------------------------------------------- /config/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanshandalishuishou/live-source-manager/HEAD/config/config.ini -------------------------------------------------------------------------------- /dockrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanshandalishuishou/live-source-manager/HEAD/dockrun.sh -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanshandalishuishou/live-source-manager/HEAD/nginx.conf -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanshandalishuishou/live-source-manager/HEAD/requirements.txt -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanshandalishuishou/live-source-manager/HEAD/start.sh --------------------------------------------------------------------------------