about summary refs log tree commit diff
path: root/youtube_dl/extractor/cliphunter.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-12-08 21:56:00 +0600
committerSergey M․ <dstftw@gmail.com>2015-12-08 21:56:00 +0600
commit39fa4cc10775d2d2b8a49d2268b11e34f32b3d2c (patch)
tree219fd91ecfc63b993e276eccf25469fb039db3ef /youtube_dl/extractor/cliphunter.py
parentb09c122373ad3a1e04148aeeac735443fd91e39d (diff)
downloadyoutube-dl-39fa4cc10775d2d2b8a49d2268b11e34f32b3d2c.tar.gz
youtube-dl-39fa4cc10775d2d2b8a49d2268b11e34f32b3d2c.tar.xz
youtube-dl-39fa4cc10775d2d2b8a49d2268b11e34f32b3d2c.zip
[cliphunter] Fix extraction (Closes #7796)
Diffstat (limited to 'youtube_dl/extractor/cliphunter.py')
-rw-r--r--youtube_dl/extractor/cliphunter.py43
1 files changed, 19 insertions, 24 deletions
diff --git a/youtube_dl/extractor/cliphunter.py b/youtube_dl/extractor/cliphunter.py
index d46592cc5..2996b6b09 100644
--- a/youtube_dl/extractor/cliphunter.py
+++ b/youtube_dl/extractor/cliphunter.py
@@ -1,7 +1,7 @@
 from __future__ import unicode_literals
 
 from .common import InfoExtractor
-from ..utils import determine_ext
+from ..utils import int_or_none
 
 
 _translation_table = {
@@ -42,31 +42,26 @@ class CliphunterIE(InfoExtractor):
         video_title = self._search_regex(
             r'mediaTitle = "([^"]+)"', webpage, 'title')
 
-        fmts = {}
-        for fmt in ('mp4', 'flv'):
-            fmt_list = self._parse_json(self._search_regex(
-                r'var %sjson\s*=\s*(\[.*?\]);' % fmt, webpage, '%s formats' % fmt), video_id)
-            for f in fmt_list:
-                fmts[f['fname']] = _decode(f['sUrl'])
-
-        qualities = self._parse_json(self._search_regex(
-            r'var player_btns\s*=\s*(.*?);\n', webpage, 'quality info'), video_id)
+        gexo_files = self._parse_json(
+            self._search_regex(
+                r'var\s+gexoFiles\s*=\s*({.+?});', webpage, 'gexo files'),
+            video_id)
 
         formats = []
-        for fname, url in fmts.items():
-            f = {
-                'url': url,
-            }
-            if fname in qualities:
-                qual = qualities[fname]
-                f.update({
-                    'format_id': '%s_%sp' % (determine_ext(url), qual['h']),
-                    'width': qual['w'],
-                    'height': qual['h'],
-                    'tbr': qual['br'],
-                })
-            formats.append(f)
-
+        for format_id, f in gexo_files.items():
+            video_url = f.get('url')
+            if not video_url:
+                continue
+            fmt = f.get('fmt')
+            height = f.get('h')
+            format_id = '%s_%sp' % (fmt, height) if fmt and height else format_id
+            formats.append({
+                'url': _decode(video_url),
+                'format_id': format_id,
+                'width': int_or_none(f.get('w')),
+                'height': int_or_none(height),
+                'tbr': int_or_none(f.get('br')),
+            })
         self._sort_formats(formats)
 
         thumbnail = self._search_regex(