Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
how to skip dash manifest use python file? #14349
Comments
|
'youtube-skip-dash-manifest':True, that does not work. |
|
|
python version:2.7.13 ,youtube-dl version:20170915
I want to skip dash manifest.
this is my .py file
import youtube_dl
ydl_opts ={'forcetitle':'True','ignoreerrors':True,'youtube-skip-dash-manifest':True,
'encoding':'utf-8','outtmpl':u'E:/Movie/%(title)s.%(ext)s','no_warnings':False,'skip_download':True}
with youtube_dl.YoutubeDL(ydl_opts) as ydl:
meta = ydl.extract_info( 'https://www.youtube.com/watch?v=6Kv9KGYaBP8',download=False)
print type(meta)
print meta
for i in meta:
print i,'====',meta[i]