mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-04 16:41:19 +00:00
[common] Fix for youtube
This commit is contained in:
parent
5d2c0fd9ba
commit
5ea1eb78f5
1 changed files with 2 additions and 2 deletions
|
@ -1346,8 +1346,8 @@ class InfoExtractor(object):
|
||||||
elif mime_type.startswith('audio/') or mime_type.startswith('video/'):
|
elif mime_type.startswith('audio/') or mime_type.startswith('video/'):
|
||||||
segment_list = r.find(_add_ns('SegmentList'))
|
segment_list = r.find(_add_ns('SegmentList'))
|
||||||
format_id = r.attrib['id']
|
format_id = r.attrib['id']
|
||||||
video_url = url_el.text if url_el else None
|
video_url = url_el.text if url_el is not None else None
|
||||||
filesize = int_or_none(url_el.attrib.get('{http://youtube.com/yt/2012/10/10}contentLength') if url_el else None)
|
filesize = int_or_none(url_el.attrib.get('{http://youtube.com/yt/2012/10/10}contentLength') if url_el is not None else None)
|
||||||
f = {
|
f = {
|
||||||
'format_id': format_id,
|
'format_id': format_id,
|
||||||
'url': video_url,
|
'url': video_url,
|
||||||
|
|
Loading…
Reference in a new issue