import youtube_dl
print('ссылку:')
i = input('')
ydl_opts = {}
with youtube_dl.YoutubeDL(ydl_opts) as ydl:
ydl.download([i])
save_dir="c:\\work\\"
ydl_opts = {
'outtmpl':save_dir+"%(title)s.%(ext)s" #будет взято из названию на ютубе + .webm или можно задать имя и расширение файла вручную
}
with youtube_dl.YoutubeDL(ydl_opts) as ydl:
ydl.download([i])