youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 51e9094f4a769187b11621c6477b19ad0e2418f9
parent 5e3a6fec3397e729991f360a4af9e2dd1e91d45c
Author: remitamine <remitamine@gmail.com>
Date:   Tue,  9 Feb 2016 20:05:39 +0100

[extractor/common] extract youtube dash formats filesize(fixes #8480)

Diffstat:
Myoutube_dl/extractor/common.py | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py @@ -1440,6 +1440,8 @@ class InfoExtractor(object): base_url = mpd_base_url + base_url representation_id = representation_attrib.get('id') lang = representation_attrib.get('lang') + url_el = representation.find(_add_ns('BaseURL')) + 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 = { 'format_id': mpd_id or representation_id, 'url': base_url, @@ -1452,6 +1454,7 @@ class InfoExtractor(object): 'acodec': 'none' if content_type == 'video' else representation_attrib.get('codecs'), 'language': lang if lang not in ('mul', 'und', 'zxx', 'mis') else None, 'format_note': 'DASH %s' % content_type, + 'filesize': filesize, } representation_ms_info = extract_multisegment_info(representation, adaption_set_ms_info) if 'segment_urls' not in representation_ms_info and 'media_template' in representation_ms_info: