YOUTUBE

How To Download YouTube Videos

1. Enter Your YouTube Video Link
2. Hit Download Button
3. Manually rename file to whatever.flv
4. Use FLV Player To Play Your YouTube Videos on Windows
NOTE: Credits and Thanks

How To Embed YouTube Video Bar on Blog or Web Page

You can embed YouTube video bar right on your blog or web page just like this example below. This YouTube Video Bar widget can be generated on this page http://www.google.com/uds/solutions/wizards/videobar.html. With this widget you can manage you video bar as horizontal slide on vertical slide as your desire need, then you can choose your expression to show on your bar (like film, sport, anime, etc). After finished configuring your widget you should generate the code and put this code on your blog or web page.


How To Download MP3 from YouTube

You can search and download your favorite music from YouTube website then convert that song to MP3 file. So you can play that song right on your MP3 player as well.



Step 1 : Search your favorite music on YouTube
Step 2 : Download that music using FreeYouTube Downloader on this site
Step 3 : Save and rename your music on FLV file (musicname.flv)
Step 4 : Convert your FLV music file to MP3 using MP3 converter
Step 5 : Enjoy your music for free :)

How To Download YouTube Videos

1. Enter Your YouTube Video Link
2. Hit Download Button
3. Manually rename file to whatever.flv
4. Use FLV Player To Play Your YouTube Videos on Windows

Credits and Thanks

Original PHP Script by http://technojuice.blogspot.com. This blog gives you free Download Video Widget to enable you download YouTube Video directly from your blog. You just have to copy and paste the javascript code to your blog with 200 pixel and 400 pixel option to suit your desire.

Free PHP YouTube Downloader Script for WebSite

You can own your YouTube Downloader Blog/Web just like this blog with this PHP script. PHP YouTube Downloader is script for download the video from YouTube directly on your your web/blog instead from YouTube Downloader Software. This PHP Script owned by YaniSetiawan, you can read his blog on Sandalian.com.

This PHP YouTube Downloader script:

/*******************
Creator : Yeni Setiawan (yeni.setiawan@yahoo.com, http://sandalian.com)
*******************/

// ------ START SCRIPT ------//
ini_set('user_agent','Opera/9.24 (Windows NT 5.1; U; id)');

function get_http_header($url){
$uh = curl_init();
curl_setopt($uh, CURLOPT_URL, $url);
curl_setopt($uh, CURLOPT_HEADER, 1);
curl_setopt($uh, CURLOPT_RETURNTRANSFER, 1);
$res = curl_exec($uh);
curl_close($uh);
return $res;
}

function show_url($http_header){
$arai = explode("\n",$http_header);
foreach($arai as $ini){
if(eregi("location",$ini)) $url = $ini;
}
list($sampah,$hasil) = explode("Location:",$url);
return str_replace("\n","",trim($hasil));
}

function download_youtube($url){
if(ereg('&',$url)){
if (eregi("watch\?v=(.*)&", $url, $out)) {
$video_id = $out[1];
}
}
else{
list($none,$video_id) = explode('watch?v=',$url);
}
$header = get_http_header('http://youtube.com/v/'.trim($video_id));
$secret_link = show_url($header);
list($none,$dl_url) = explode("/swf/l.swf?",$secret_link);
$video_url = 'http://youtube.com/get_video?'.$dl_url;
return $video_url;
}
// ------ END SCRIPT ------//
?>

The PHP Usage is:

// load the script
require_once('youtube.inc.php');

// download and echo the URL
echo download_youtube('http://youtube.com/watch?v=SAQZ0BDXn48');
?>