Click here to Skip to main content
15,895,283 members
Articles / Programming Languages / PHP
Tip/Trick

One Line of code to download youtube's flv file in php

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
25 Mar 2011CPOL 19.9K   8   4
One Line of code to download youtube's flv file in php
$video_id is the id of youtube video
$video_path is the saving path

<br />
exec('wget -t 2  --cookies=on --keep-session-cookies --save-cookies=/home/cookie.txt http://www.youtube.com/get_video_info?video_id='.$video_id.' -qO- | sed -n "/fmt_url_map/{s/[\\&]/\\n/g;p}" | sed -n \'/^fmt_url_map=/p\'  | sed -n "s/\\%7C/\\n/g;p"  | sed -n \'/itag%3D5/p\'|  sed \'s/%3A/:/g;s/%2F/\\//g;s/%3F/\\?/g;s/%3D/=/g;s/%26/\\&/g ;s/%25/%/g \' | wget  --cookies=on --load-cookies=/home/cookie.txt  -i - -O '.$video_path);

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralReason for my vote of 5 it works Pin
mraiur7-Apr-11 3:28
mraiur7-Apr-11 3:28 
GeneralReported Pin
Trollslayer26-Mar-11 1:32
mentorTrollslayer26-Mar-11 1:32 
QuestionWhy one line? Pin
Indivara23-Mar-11 20:43
professionalIndivara23-Mar-11 20:43 
AnswerRe: Why one line? Pin
Henry Minute24-Mar-11 4:56
Henry Minute24-Mar-11 4:56 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.