├── .dockerignore ├── .github └── workflows │ ├── publish-image.yml │ └── update-image-with-new-ytdlp.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── docker-compose.yml ├── make_celery.py ├── requirements.txt ├── start.sh └── ytdlp_frontend ├── __init__.py ├── config └── yt-dlp.conf ├── static ├── choices.css ├── choices.min.js └── styles.css ├── tasks.py ├── templates └── index.html └── views.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyys/ytdlp-webui/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/publish-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyys/ytdlp-webui/HEAD/.github/workflows/publish-image.yml -------------------------------------------------------------------------------- /.github/workflows/update-image-with-new-ytdlp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyys/ytdlp-webui/HEAD/.github/workflows/update-image-with-new-ytdlp.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | .venv/ -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyys/ytdlp-webui/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyys/ytdlp-webui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyys/ytdlp-webui/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyys/ytdlp-webui/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /make_celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyys/ytdlp-webui/HEAD/make_celery.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyys/ytdlp-webui/HEAD/requirements.txt -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyys/ytdlp-webui/HEAD/start.sh -------------------------------------------------------------------------------- /ytdlp_frontend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyys/ytdlp-webui/HEAD/ytdlp_frontend/__init__.py -------------------------------------------------------------------------------- /ytdlp_frontend/config/yt-dlp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyys/ytdlp-webui/HEAD/ytdlp_frontend/config/yt-dlp.conf -------------------------------------------------------------------------------- /ytdlp_frontend/static/choices.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyys/ytdlp-webui/HEAD/ytdlp_frontend/static/choices.css -------------------------------------------------------------------------------- /ytdlp_frontend/static/choices.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyys/ytdlp-webui/HEAD/ytdlp_frontend/static/choices.min.js -------------------------------------------------------------------------------- /ytdlp_frontend/static/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyys/ytdlp-webui/HEAD/ytdlp_frontend/static/styles.css -------------------------------------------------------------------------------- /ytdlp_frontend/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyys/ytdlp-webui/HEAD/ytdlp_frontend/tasks.py -------------------------------------------------------------------------------- /ytdlp_frontend/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyys/ytdlp-webui/HEAD/ytdlp_frontend/templates/index.html -------------------------------------------------------------------------------- /ytdlp_frontend/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyys/ytdlp-webui/HEAD/ytdlp_frontend/views.py --------------------------------------------------------------------------------