youtube-dl

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

commit fa880d20ad2a2185d9ea691f8a2fa5cfbfbbb1b2
parent ae7d31af1cd1b9c2f1cae86acb8a4156556dc748
Author: Yen Chi Hsuan <yan12125@gmail.com>
Date:   Fri,  4 Mar 2016 23:57:05 +0800

[kusi] Two fixes

Thanks @dstftw for pointing out those

Diffstat:
Myoutube_dl/extractor/kusi.py | 14++++++--------
1 file changed, 6 insertions(+), 8 deletions(-)

diff --git a/youtube_dl/extractor/kusi.py b/youtube_dl/extractor/kusi.py @@ -68,13 +68,11 @@ class KUSIIE(InfoExtractor): doc = self._download_xml(xml_url, video_id) - video_title = xpath_text(doc, 'HEADLINE') - duration = float_or_none( - xpath_text(doc, 'DURATION', fatal=False), scale=1000) - description = xpath_text(doc, 'ABSTRACT', fatal=False) - thumbnail = xpath_text(doc, './THUMBNAILIMAGE/FILENAME', fatal=False) - createtion_time = timeconvert( - xpath_text(doc, 'rfc822creationdate', fatal=False)) + video_title = xpath_text(doc, 'HEADLINE', fatal=True) + duration = float_or_none(xpath_text(doc, 'DURATION'), scale=1000) + description = xpath_text(doc, 'ABSTRACT') + thumbnail = xpath_text(doc, './THUMBNAILIMAGE/FILENAME') + createtion_time = timeconvert(xpath_text(doc, 'rfc822creationdate')) quality_options = doc.find('{http://search.yahoo.com/mrss/}group').findall('{http://search.yahoo.com/mrss/}content') formats = [] @@ -83,7 +81,7 @@ class KUSIIE(InfoExtractor): 'url': compat_urllib_parse_unquote_plus(quality.attrib['url']), 'height': int_or_none(quality.attrib.get('height')), 'width': int_or_none(quality.attrib.get('width')), - 'vbr': float_or_none(quality.attrib.get('bitratebits'), scale=1024), + 'vbr': float_or_none(quality.attrib.get('bitratebits'), scale=1000), }) self._sort_formats(formats)