diff options
author | Sergey M․ <dstftw@gmail.com> | 2014-10-03 19:37:47 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2014-10-03 19:37:47 +0700 |
commit | d397c0b3dd17d17c8235286eb88950d5fda53cee (patch) | |
tree | fc9f6e0a75270dfabb0d26b0cb6643b766dd31c4 /youtube_dl/extractor | |
parent | 146c80e2562dab0f229f13a1fbc0e8ae116d4cb3 (diff) |
[breakcom] Extract all formats
Diffstat (limited to 'youtube_dl/extractor')
-rw-r--r-- | youtube_dl/extractor/breakcom.py | 28 |
1 files changed, 25 insertions, 3 deletions
diff --git a/youtube_dl/extractor/breakcom.py b/youtube_dl/extractor/breakcom.py index 9b0aa2b1b..2c0e5eea2 100644 --- a/youtube_dl/extractor/breakcom.py +++ b/youtube_dl/extractor/breakcom.py @@ -4,6 +4,10 @@ import re import json from .common import InfoExtractor +from ..utils import ( + int_or_none, + parse_age_limit, +) class BreakIE(InfoExtractor): @@ -28,15 +32,33 @@ class BreakIE(InfoExtractor): info = json.loads(self._search_regex( r'var embedVars = ({.*})\s*?</script>', webpage, 'info json', flags=re.DOTALL)) - video_url = info['videoUri'] + youtube_id = info.get('youtubeId') if youtube_id: return self.url_result(youtube_id, 'Youtube') - final_url = video_url + '?' + info['AuthToken'] + formats = [{ + 'url': media['uri'] + '?' + info['AuthToken'], + 'tbr': media['bitRate'], + 'width': media['width'], + 'height': media['height'], + } for media in info['media']] + + if not formats: + formats.append({ + 'url': info['videoUri'] + }) + + self._sort_formats(formats) + + duration = int_or_none(info.get('videoLengthInSeconds')) + age_limit = parse_age_limit(info.get('audienceRating')) + return { 'id': video_id, - 'url': final_url, 'title': info['contentName'], 'thumbnail': info['thumbUri'], + 'duration': duration, + 'age_limit': age_limit, + 'formats': formats, } |