View Single Post
Old 07-23-2012, 05:21 PM   PM User | #409
chump2877
Senior Coder

 
chump2877's Avatar
 
Join Date: Dec 2004
Location: the U.S. of freakin' A.
Posts: 2,530
Thanks: 15
Thanked 128 Times in 121 Posts
chump2877 is on a distinguished road
Quote:
Originally Posted by Nikey646 View Post
Is there anyway to download it still? Or is it a no go?
For that video, you might be out of luck unless you can find an alternate video file URL in the browser source code.

If you absolutely needed that particular video, and all else fails, you could try using a screen recorder (i.e., VLC) to record the YouTube video while its playing inside your browser. Then you could use FFmpeg to strip the audio track from the screen recording, using code like the following:

PHP Code:
$cmd 'ffmpeg -i screencast.flv -y -acodec libmp3lame -ab 128k audioTrack.mp3';
exec($cmd); 
__________________
Regards, R.J.

Last edited by chump2877; 07-23-2012 at 05:24 PM..
chump2877 is offline   Reply With Quote