Quote:
Originally Posted by floppyring
You can try installing ffmpeg and youtube-dl. Then run on the command line
ffmpeg $(youtube-dl -g 'https://www.youtube.com/watch?v=oHg5SJYRHA0' | sed 's/^/-ss 01:00:00 -i /') -t 01:00 -c copy output.mp4
if you want to download the video starting at 01:00:00 with length 1 minute. It should be very quick as it only downloads that section and not the entire video.
|
Appreciate that thanks! I will give it a try