Quote:
Originally Posted by Nikey646
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);