PHP code example of refaltor / youtube-downloader

1. Go to this page and download the library: Download refaltor/youtube-downloader library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

refaltor / youtube-downloader example snippets




efaltor\YoutubeDownloader\Youtube;

try {
// Initialize the YouTube downloader
$downloader = new Youtube(
outputPath: '/absolute/path/to/store/videos/', // Directory to save the video
videoUrl: 'https://www.youtube.com/watch?v=example' // URL of the YouTube video
);

    // Start the download
    $downloadedFile = $downloader->download();

    echo "Video downloaded successfully: " . $downloadedFile;
} catch (Exception $e) {
echo "Error: " . $e->getMessage();
}



efaltor\YoutubeDownloader\Youtube;

try {
$downloader = new Youtube(
outputPath: '/absolute/path/to/store/videos/',
ffmpegPath: '/custom/path/to/ffmpeg',
youtubeDlPath: '/custom/path/to/youtube-dl'
);

    // Set the video URL dynamically
    $downloader->setVideoUrl('https://www.youtube.com/watch?v=example');
    
    $downloadedFile = $downloader->download();

    echo "Video downloaded successfully: " . $downloadedFile;
} catch (Exception $e) {
echo "Error: " . $e->getMessage();
}



efaltor\YoutubeDownloader\Youtube;

try {
$downloader = new Youtube(
outputPath: '/absolute/path/to/store/videos/'
);

    $downloader->setVideoUrl('https://www.youtube.com/watch?v=example');
    $downloadedFile = $downloader->download();

    echo "Video downloaded successfully: " . $downloadedFile;
} catch (Exception $e) {
echo "Error: " . $e->getMessage();
}