├── .github ├── dependabot.yml └── workflows │ └── docker-image.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .vscode └── settings.json ├── Dockerfile ├── LICENSE ├── README.md ├── SECURITY.md ├── requirements.txt ├── templates └── index.html ├── youtube-dl-server.png └── youtube-dl-server.py /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manbearwiz/youtube-dl-server/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manbearwiz/youtube-dl-server/HEAD/.github/workflows/docker-image.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manbearwiz/youtube-dl-server/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manbearwiz/youtube-dl-server/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manbearwiz/youtube-dl-server/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manbearwiz/youtube-dl-server/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manbearwiz/youtube-dl-server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manbearwiz/youtube-dl-server/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manbearwiz/youtube-dl-server/HEAD/SECURITY.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manbearwiz/youtube-dl-server/HEAD/requirements.txt -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manbearwiz/youtube-dl-server/HEAD/templates/index.html -------------------------------------------------------------------------------- /youtube-dl-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manbearwiz/youtube-dl-server/HEAD/youtube-dl-server.png -------------------------------------------------------------------------------- /youtube-dl-server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manbearwiz/youtube-dl-server/HEAD/youtube-dl-server.py --------------------------------------------------------------------------------