├── .gitignore ├── LICENSE.md ├── README.md ├── class ├── Downloader.php ├── FileHandler.php └── Session.php ├── config └── config.php.TEMPLATE ├── css ├── custom.css ├── input.css └── output.css ├── downloads └── .keep ├── favicon_144.png ├── img ├── list.png └── main.png ├── index.php ├── info.php ├── list.php ├── login.php ├── logout.php ├── logs.php ├── logs └── .keep ├── tailwind.config.js └── views ├── footer.php └── header.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timendum/Youtube-dl-WebUI/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timendum/Youtube-dl-WebUI/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timendum/Youtube-dl-WebUI/HEAD/README.md -------------------------------------------------------------------------------- /class/Downloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timendum/Youtube-dl-WebUI/HEAD/class/Downloader.php -------------------------------------------------------------------------------- /class/FileHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timendum/Youtube-dl-WebUI/HEAD/class/FileHandler.php -------------------------------------------------------------------------------- /class/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timendum/Youtube-dl-WebUI/HEAD/class/Session.php -------------------------------------------------------------------------------- /config/config.php.TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timendum/Youtube-dl-WebUI/HEAD/config/config.php.TEMPLATE -------------------------------------------------------------------------------- /css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timendum/Youtube-dl-WebUI/HEAD/css/custom.css -------------------------------------------------------------------------------- /css/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timendum/Youtube-dl-WebUI/HEAD/css/input.css -------------------------------------------------------------------------------- /css/output.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timendum/Youtube-dl-WebUI/HEAD/css/output.css -------------------------------------------------------------------------------- /downloads/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /favicon_144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timendum/Youtube-dl-WebUI/HEAD/favicon_144.png -------------------------------------------------------------------------------- /img/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timendum/Youtube-dl-WebUI/HEAD/img/list.png -------------------------------------------------------------------------------- /img/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timendum/Youtube-dl-WebUI/HEAD/img/main.png -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timendum/Youtube-dl-WebUI/HEAD/index.php -------------------------------------------------------------------------------- /info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timendum/Youtube-dl-WebUI/HEAD/info.php -------------------------------------------------------------------------------- /list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timendum/Youtube-dl-WebUI/HEAD/list.php -------------------------------------------------------------------------------- /login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timendum/Youtube-dl-WebUI/HEAD/login.php -------------------------------------------------------------------------------- /logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timendum/Youtube-dl-WebUI/HEAD/logout.php -------------------------------------------------------------------------------- /logs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timendum/Youtube-dl-WebUI/HEAD/logs.php -------------------------------------------------------------------------------- /logs/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timendum/Youtube-dl-WebUI/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /views/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timendum/Youtube-dl-WebUI/HEAD/views/footer.php -------------------------------------------------------------------------------- /views/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timendum/Youtube-dl-WebUI/HEAD/views/header.php --------------------------------------------------------------------------------