├── .gitignore ├── InfoViewer.js ├── LICENSE ├── README.md ├── VideoInfo.js ├── index.html ├── processURL.js ├── style.css └── urlform.js /.gitignore: -------------------------------------------------------------------------------- 1 | youtube_dl 2 | -------------------------------------------------------------------------------- /InfoViewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaimeMF/youtube-dl-web/HEAD/InfoViewer.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaimeMF/youtube-dl-web/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaimeMF/youtube-dl-web/HEAD/README.md -------------------------------------------------------------------------------- /VideoInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaimeMF/youtube-dl-web/HEAD/VideoInfo.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaimeMF/youtube-dl-web/HEAD/index.html -------------------------------------------------------------------------------- /processURL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaimeMF/youtube-dl-web/HEAD/processURL.js -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaimeMF/youtube-dl-web/HEAD/style.css -------------------------------------------------------------------------------- /urlform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaimeMF/youtube-dl-web/HEAD/urlform.js --------------------------------------------------------------------------------