Difference between revisions of "Download youtube ke .flv"
Jump to navigation
Jump to search
Onnowpurbo (talk | contribs) (New page: Get the video_id from the url. It is the string after v= Next, you need the t-parameter. You can find it in the HTML source, by searching for &t= and copying what is in between the equal ...) |
Onnowpurbo (talk | contribs) |
||
(One intermediate revision by the same user not shown) | |||
Line 7: | Line 7: | ||
Substitude the x'es by the video_id and the t-parameter. The fmt=18 makes sure the video and audio are not re-encoded. This will improve quality dramatically. | Substitude the x'es by the video_id and the t-parameter. The fmt=18 makes sure the video and audio are not re-encoded. This will improve quality dramatically. | ||
+ | |||
+ | ==Referensi== | ||
+ | |||
+ | * http://linuxpc.info/node/62 | ||
==Pranala Menarik== | ==Pranala Menarik== | ||
* [[Multimedia di Linux]] | * [[Multimedia di Linux]] | ||
− | * [[ | + | * [[Tip Internet]] |
+ | * [[Script untuk Download Youtube ke .avi]] | ||
+ | * [[Youtube Downloader, Cara Cepat Download Film Dari Youtube]] | ||
+ | * [[Download Youtube di Ubuntu 10.04]] | ||
+ | * [[Download youtube ke .flv]] | ||
+ | * [[Script untuk mencuri file youtube di /tmp]] | ||
[[Category: Multimedia]] | [[Category: Multimedia]] | ||
[[Category: Linux]] | [[Category: Linux]] | ||
+ | [[Category: Internet]] |
Latest revision as of 19:22, 20 March 2012
Get the video_id from the url. It is the string after v=
Next, you need the t-parameter. You can find it in the HTML source, by searching for &t= and copying what is in between the equal sign (=) and the ampersand (&). Now use the following command to download the video:
wget -O outfile.flv "http://www.youtube.com/get_video.php?video_id=xxxxx&t=xxxxx&fmt=18"
Substitude the x'es by the video_id and the t-parameter. The fmt=18 makes sure the video and audio are not re-encoded. This will improve quality dramatically.