├── .gitignore ├── README.md ├── comparisonfunctions.usort.php ├── examples ├── example-audio-1.php ├── example-audio-2.php ├── example-audio-3.php ├── example-video-1.php ├── example-video-2.php └── example-video-3.php ├── videos └── .gitignore ├── youtube-dl.class.php └── youtube-dl.config.php /.gitignore: -------------------------------------------------------------------------------- 1 | gh-pages/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyecatchup/php-yt_downloader/HEAD/README.md -------------------------------------------------------------------------------- /comparisonfunctions.usort.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyecatchup/php-yt_downloader/HEAD/comparisonfunctions.usort.php -------------------------------------------------------------------------------- /examples/example-audio-1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyecatchup/php-yt_downloader/HEAD/examples/example-audio-1.php -------------------------------------------------------------------------------- /examples/example-audio-2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyecatchup/php-yt_downloader/HEAD/examples/example-audio-2.php -------------------------------------------------------------------------------- /examples/example-audio-3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyecatchup/php-yt_downloader/HEAD/examples/example-audio-3.php -------------------------------------------------------------------------------- /examples/example-video-1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyecatchup/php-yt_downloader/HEAD/examples/example-video-1.php -------------------------------------------------------------------------------- /examples/example-video-2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyecatchup/php-yt_downloader/HEAD/examples/example-video-2.php -------------------------------------------------------------------------------- /examples/example-video-3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyecatchup/php-yt_downloader/HEAD/examples/example-video-3.php -------------------------------------------------------------------------------- /videos/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /youtube-dl.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyecatchup/php-yt_downloader/HEAD/youtube-dl.class.php -------------------------------------------------------------------------------- /youtube-dl.config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyecatchup/php-yt_downloader/HEAD/youtube-dl.config.php --------------------------------------------------------------------------------