PHP code example of darkwob / youtube-mp3-converter
1. Go to this page and download the library: Download darkwob/youtube-mp3-converter 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/ */
darkwob / youtube-mp3-converter example snippets
use Darkwob\YoutubeMp3Converter\Converter\YouTubeConverter;
use Darkwob\YoutubeMp3Converter\Progress\FileProgress;
// Initialize progress tracker
$progress = new FileProgress(__DIR__ . '/progress');
// Initialize converter
$converter = new YouTubeConverter(
__DIR__ . '/bin', // Binary path (yt-dlp, ffmpeg)
__DIR__ . '/downloads', // Output directory
__DIR__ . '/temp', // Temporary directory
$progress // Progress tracker
);
// Convert a video
try {
$result = $converter->processVideo('https://www.youtube.com/watch?v=VIDEO_ID');
if ($result['success']) {
foreach ($result['results'] as $video) {
echo "Converted: {$video['title']}\n";
echo "File: {$video['file']}\n";
}
}
} catch (ConverterException $e) {
echo "Error: " . $e->getMessage();
}
use Darkwob\YoutubeMp3Converter\Converter\Options\ConverterOptions;
$options = new ConverterOptions();
$options
->setAudioFormat('mp3') // mp3, wav, aac, m4a, opus, vorbis, flac
->setAudioQuality(0) // 0 (best) to 9 (worst)
->setVideoFormat('bestaudio/best') // Video format selection
->enableSponsorBlock() // Skip sponsored segments
->setPlaylistItems('1-10') // Process specific items
->setDateFilter('20220101', '20231231') // Date range filter
->setFileSizeLimit('100M') // Maximum file size
->setOutputTemplate('%(title)s.%(ext)s') // Custom output template
->setProxy('socks5://127.0.0.1:1080') // Proxy configuration
->setRateLimit(3) // Downloads per minute
->enableThumbnail() // Embed thumbnail
->setMetadata([ // Custom metadata
'artist' => '%(uploader)s',
'title' => '%(title)s'
]);
$converter = new YouTubeConverter($binPath, $outputDir, $tempDir, $progress, $options);
use Darkwob\YoutubeMp3Converter\Converter\Remote\RemoteConverter;
$remote = new RemoteConverter(
'https://api.converter.com',
'your-api-token'
);
// Async conversion
$jobId = $remote->startConversion($url, $options);
// Check progress
$status = $remote->getProgress($jobId);
// Download when ready
if ($status['status'] === 'completed') {
$remote->downloadFile($jobId, 'output.mp3');
}
use Darkwob\YoutubeMp3Converter\Progress\RedisProgress;
$redis = new Redis();
$redis->connect('127.0.0.1', 6379);
$progress = new RedisProgress($redis, 'converter:', 3600);
// Track progress
$progress->update('video123', 'downloading', 50, 'Downloading video...');
// Get progress
$status = $progress->get('video123');
echo "Progress: {$status['progress']}%\n";
echo "Status: {$status['status']}\n";
echo "Message: {$status['message']}\n";
use Darkwob\YoutubeMp3Converter\Converter\Exceptions\ConverterException;
try {
$result = $converter->processVideo($url);
} catch (ConverterException $e) {
switch (true) {
case $e instanceof ConverterException:
// Handle conversion errors
break;
// Handle other specific exceptions
}
}