mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-05 01:48:01 +09:00
[youtube] Add a test for the DASH segment downloader
This commit is contained in:
parent
5bf3276e8d
commit
8a1a26ce4c
@ -516,6 +516,24 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
|
|||||||
'skip_download': 'requires avconv',
|
'skip_download': 'requires avconv',
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
# DASH manifest with segment_list
|
||||||
|
{
|
||||||
|
'url': 'https://www.youtube.com/embed/CsmdDsKjzN8',
|
||||||
|
'md5': '8ce563a1d667b599d21064e982ab9e31',
|
||||||
|
'info_dict': {
|
||||||
|
'id': 'CsmdDsKjzN8',
|
||||||
|
'ext': 'mp4',
|
||||||
|
'upload_date': '20150510',
|
||||||
|
'uploader': 'Airtek',
|
||||||
|
'description': 'Retransmisión en directo de la XVIII media maratón de Zaragoza.',
|
||||||
|
'uploader_id': 'UCzTzUmjXxxacNnL8I3m4LnQ',
|
||||||
|
'title': 'Retransmisión XVIII Media maratón Zaragoza 2015',
|
||||||
|
},
|
||||||
|
'params': {
|
||||||
|
'youtube_include_dash_manifest': True,
|
||||||
|
'format': '135', # bestvideo
|
||||||
|
}
|
||||||
|
}
|
||||||
]
|
]
|
||||||
|
|
||||||
def __init__(self, *args, **kwargs):
|
def __init__(self, *args, **kwargs):
|
||||||
|
Loading…
Reference in New Issue
Block a user