Here is my codes: YouTubeToMp3Converter.class.php
<?php
// Conversion Class
class YouTubeToMp3Converter
{
// Private Fields
private $_songFileName = '';
private $_flvUrl = '';
private $_audioQualities = array(64, 128, 320);
private $_tempVidFileName;
private $_vidSrcTypes = array('source_code', 'url');
// Constants
const _TEMPVIDDIR = 'videos/';
const _SONGFILEDIR = 'mp3/';
const _FFMPEG = 'ffmpeg.exe';
#region Public Methods
function __construct()
{
}
function DownloadVideo($youTubeUrl)
{
$file_contents = file_get_contents($youTubeUrl);
if ($file_contents !== false)
{
$this->SetSongFileName($file_contents);
$this->SetFlvUrl($file_contents);
if ($this->GetSongFileName() != '' && $this->GetFlvUrl() != '')
{
return $this->SaveVideo($this->GetFlvUrl());
}
}
return false;
}
function GenerateMP3($audioQuality)
{
$qualities = $this->GetAudioQualities();
$quality = (in_array($audioQuality, $qualities)) ? $audioQuality : $qualities[1];
$exec_string = self::_FFMPEG.' -i '.$this->GetTempVidFileName().' -y -acodec libmp3lame -ab '.$quality.'k '.$this->GetSongFileName();
exec($exec_string);
$this->DeleteTempVid();
return is_file($this->GetSongFileName());
}
function ExtractSongTrackName($vidSrc, $srcType)
{
$name = '';
$vidSrcTypes = $this->GetVidSrcTypes();
if (in_array($srcType, $vidSrcTypes))
{
$vidSrc = ($srcType == $vidSrcTypes[1]) ? file_get_contents($vidSrc) : $vidSrc;
if ($vidSrc !== false && eregi('eow-title',$vidSrc))
{
$name = end(explode('eow-title',$vidSrc));
$name = current(explode('">',$name));
$name = ereg_replace('[^-_a-zA-Z,"\' :0-9]',"",end(explode('title="',$name)));
}
}
return $name;
}
#endregion
#region Private "Helper" Methods
private function SaveVideo($url)
{
$this->SetTempVidFileName(time());
$file = fopen($this->GetTempVidFileName(), 'w');
$ch = curl_init();
curl_setopt($ch, CURLOPT_FILE, $file);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_COOKIEFILE, COOKIE);
curl_setopt($ch, CURLOPT_COOKIEJAR, COOKIE);
curl_exec($ch);
curl_close($ch);
fclose($file);
return is_file($this->GetTempVidFileName());
}
private function DeleteTempVid()
{
if (is_file($this->GetTempVidFileName()))
{
unlink($this->GetTempVidFileName());
}
}
#endregion
#region Properties
public function GetSongFileName()
{
return $this->_songFileName;
}
private function SetSongFileName($file_contents)
{
$vidSrcTypes = $this->GetVidSrcTypes();
$trackName = $this->ExtractSongTrackName($file_contents, $vidSrcTypes[0]);
$this->_songFileName = (!empty($trackName)) ? self::_SONGFILEDIR . preg_replace('/_{2,}/','_',preg_replace('/ /','_',preg_replace('/[^A-Za-z0-9 _-]/','',$trackName))) . '.mp3' : '';
}
public function GetFlvUrl()
{
return $this->_flvUrl;
}
private function SetFlvUrl($file_contents)
{
$vidUrl = '';
if (eregi('fmt_url_map',$file_contents))
{
$vidUrl = end(explode('&fmt_url_map=',$file_contents));
$vidUrl = current(explode('&',$vidUrl));
$vidUrl = current(explode('%2C',$vidUrl));
$vidUrl = urldecode(end(explode('%7C',$vidUrl)));
}
$this->_flvUrl = $vidUrl;
}
public function GetAudioQualities()
{
return $this->_audioQualities;
}
private function GetTempVidFileName()
{
return $this->_tempVidFileName;
}
private function SetTempVidFileName($timestamp)
{
$this->_tempVidFileName = self::_TEMPVIDDIR . $timestamp .'.flv';
}
public function GetVidSrcTypes()
{
return $this->_vidSrcTypes;
}
#endregion
}
?>
index.php
<?php echo '<?xml version="1.1" encoding="iso-8859-1"?>'; ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
<"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>YourTube-YouTube to MP3</title>
<style type="text/css">
body
{
text-align:center;
font:13px Verdana,Arial;
color:#09F
margin-top:50px;
background:url(images/bg.png)
}
p
{
margin:15px 0;
font-weight:bold;
color:#00F
}
form
{
width:450px;
margin:0 auto;
padding:15px;
border:2px 2px 2px dashed #0F3;
color:#00F
}
form input[type="text"]
{
width:385px;
color:#00F
}
form p
{
margin:10px 0;
font-weight:normal;
color:#00F
}
</style>
</head>
<body>
<h2>YouTube-To-Mp3 Converter</h2>
<?php
// Execution settings
ini_set('max_execution_time',0);
ini_set('display_errors',0);
// On form submission...
if ($_POST['submit'])
{
// Instantiate converter class
include 'YouTubeToMp3Converter.class.php';
$converter = new YouTubeToMp3Converter();
// Print "please wait" message and preview image
$vidID = $vidTitle = '';
$urlQueryStr = parse_url(trim($_POST['youtubeURL']), PHP_URL_QUERY);
if ($urlQueryStr !== false && !empty($urlQueryStr))
{
$kvPairs = explode('&', $urlQueryStr);
foreach ($kvPairs as $v)
{
$kvPair = explode('=', $v);
if ($kvPair[0] == 'v')
{
$vidID = $kvPair[1];
break;
}
}
echo '<div id="preview" style="display:block"><p>...Please wait while I try to convert:</p>';
echo '<p><img src="http://img.youtube.com/vi/'.$vidID.'/1.jpg" alt="preview image" /></p>';
echo '<p>'.$converter->ExtractSongTrackName(trim($_POST['youtubeURL']), 'url').'</p></div>';
flush();
}
// Main Program Execution
if ($converter->DownloadVideo(trim($_POST['youtubeURL'])))
{
echo ($converter->GenerateMP3($_POST['quality'])) ? '<p>Success!</p>' : '<p>Error generating MP3 file!</p>';
}
else
{
echo '<p>Error downloading video!</p>';
}
}
?>
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post">
<p>Enter a valid YouTube.com video URL:</p>
<p><input type="text" name="youtubeURL" /></p>
<p><i>(i.e., "<span style="color:red">http://www.youtube.com/watch?v=HMpmI2F2cMs</span>")</i></p>
<p style="margin-top:20px">Choose the audio quality (better quality results in larger files):</p>
<p style="margin-bottom:25px"><input type="radio" value="64" name="quality" />Low <input type="radio" value="128" name="quality" checked="checked" />Medium <input type="radio" value="320" name="quality" />High</p>
<p><input type="submit" name="submit" value="Create MP3 File" /></p>
</form>
<script type="text/javascript">
window.onload = function()
{
if (document.getElementById('preview'))
{
document.getElementById('preview').style.display = 'none';
}
};
</script>
</body>
</html>
It tells me on my site Error Downloading Video! but gives me no error code. I need help figuring out what the error could be and how to fix it to where it will work correctly converting a YouTube video into a MP3 file.

[solved]in the title - we add an answer and tick it. It's fine for you to do it - would you do that now? I've reverted your title edit. Thanks:)– halfer Jan 19 at 23:37