diff options
Diffstat (limited to 'youtube_dl/extractor')
| -rw-r--r-- | youtube_dl/extractor/common.py | 1 | ||||
| -rw-r--r-- | youtube_dl/extractor/yahoo.py | 12 | 
2 files changed, 7 insertions, 6 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py index 05f0cb6d5..6fa60622e 100644 --- a/youtube_dl/extractor/common.py +++ b/youtube_dl/extractor/common.py @@ -57,6 +57,7 @@ class InfoExtractor(object):                      * width      Width of the video, if known                      * height     Height of the video, if known                      * resolution Textual description of width and height +                    * tbr        Average bitrate of audio and video in KBit/s                      * abr        Average audio bitrate in KBit/s                      * acodec     Name of the audio codec in use                      * vbr        Average video bitrate in KBit/s diff --git a/youtube_dl/extractor/yahoo.py b/youtube_dl/extractor/yahoo.py index 5c9c361b9..e17a39782 100644 --- a/youtube_dl/extractor/yahoo.py +++ b/youtube_dl/extractor/yahoo.py @@ -6,8 +6,8 @@ from .common import InfoExtractor, SearchInfoExtractor  from ..utils import (      compat_urllib_parse,      compat_urlparse, -    determine_ext,      clean_html, +    int_or_none,  ) @@ -68,9 +68,9 @@ class YahooIE(InfoExtractor):          formats = []          for s in info['streams']:              format_info = { -                'width': s.get('width'), -                'height': s.get('height'), -                'bitrate': s.get('bitrate'), +                'width': int_or_none(s.get('width')), +                'height': int_or_none(s.get('height')), +                'tbr': int_or_none(s.get('bitrate')),              }              host = s['host'] @@ -84,10 +84,10 @@ class YahooIE(InfoExtractor):              else:                  format_url = compat_urlparse.urljoin(host, path)                  format_info['url'] = format_url -                format_info['ext'] = determine_ext(format_url)              formats.append(format_info) -        formats = sorted(formats, key=lambda f:(f['height'], f['width'])) + +        self._sort_formats(formats)          return {              'id': video_id,  | 
