Showing posts with label download youtube videos with youtube-dl. Show all posts
Showing posts with label download youtube videos with youtube-dl. Show all posts

Sunday, April 12, 2020

Download youtube videos from a playlist between start and end index using youtube-dl

youtube-dl --no-check-certificate -cio "E:/powerpoint_vba/access_vba/%(title)s.%(ext)s" --playlist-start 1 --playlist-end 6 https://www.youtube.com/playlist?list=PLYMOUCVo86jEeMMdaaq03jQ_t9nFV737s

Friday, April 10, 2020

youtube-dl error when downloading videos from youtube 'urlopen error' solved

Instead of 

C:\Windows\system32> youtube-dl  -cio "E:/powerpoint_vba/%(title)s.%(ext)s" http
s://www.youtube.com/playlist?list=PLyKV-uDcp5XgJ8FqczLBf2XxKjmQUvcz6


we should use

C:\Windows\system32> youtube-dl --no-check-certificate  -cio "E:/powerpoint_vba/
%(title)s.%(ext)s" https://www.youtube.com/playlist?list=PLyKV-uDcp5XgJ8FqczLBf2
XxKjmQUvcz6


Source:https://github.com/ytdl-org/youtube-dl/issues/883