summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2014-10-03 19:37:47 +0700
committerSergey M․ <dstftw@gmail.com>2014-10-03 19:37:47 +0700
commitd397c0b3dd17d17c8235286eb88950d5fda53cee (patch)
treefc9f6e0a75270dfabb0d26b0cb6643b766dd31c4
parent146c80e2562dab0f229f13a1fbc0e8ae116d4cb3 (diff)
downloadyoutube-dl-d397c0b3dd17d17c8235286eb88950d5fda53cee.tar.gz
youtube-dl-d397c0b3dd17d17c8235286eb88950d5fda53cee.tar.xz
youtube-dl-d397c0b3dd17d17c8235286eb88950d5fda53cee.zip
[breakcom] Extract all formats
-rw-r--r--youtube_dl/extractor/breakcom.py28
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,
         }