How can i download youtube videos one after another automatically from terminal? is there any chance to download youtube videos one after the another automatically from terminal??
Asked
Active
Viewed 503 times
1 Answers
4
I was quite tempted to mark this question as a duplicate of How do I download a YouTube video?
However, your question is remotely different because you want to download YouTube videos one after another, not a single YouTube video. This is also simple: use the program youtube-dl
as suggested in this answer. youtube-dl
can also take a list of URLs as parameters and download them one by one.
For instance,
youtube-dl http://www.youtube.com/watch?v=CP8CNp-vksc http://www.youtube.com/watch?v=JmOXHH3DTwg

Malte Skoruppa
- 13,196
- 5
- 57
- 65
youtube-dl http://www.youtube.com/watch?v=CP8CNp-vksc ; youtube-dl http://www.youtube.com/watch?v=JmOXHH3DTwg
– Avinash Raj Jan 07 '14 at 14:50for link in http://www.youtube.com/watch?v=M0Y9bbtlB5w http://www.youtube.com/watch?v=LBtPhaF5OhA; do youtube-dl $link; done
-- many roads lead to Rome. I went for the shortest one ;) – Malte Skoruppa Jan 07 '14 at 14:53