Pārlūkot izejas kodu

Preliminary support for twitch.tv and justin.tv

Dave Vasilevsky 12 gadi atpakaļ
vecāks
revīzija
0b40544f29
2 mainītis faili ar 57 papildinājumiem un 0 dzēšanām
  1. 56 0
      youtube_dl/InfoExtractors.py
  2. 1 0
      youtube_dl/__init__.py

+ 56 - 0
youtube_dl/InfoExtractors.py

@@ -3634,3 +3634,59 @@ class NBAIE(InfoExtractor):
             'description': _findProp(r'<div class="description">(.*?)</h1>'),
             'description': _findProp(r'<div class="description">(.*?)</h1>'),
         }
         }
         return [info]
         return [info]
+
+class JustinTVIE(InfoExtractor):
+    """Information extractor for justin.tv and twitch.tv"""
+    
+#    _VALID_URL = r"""^(?:http(?:s?)://)?www\.(?:justin|twitch)\.tv/
+#        ([^/]+)(?:/b/([^/]+))?/?(?:#.*)?$"""
+    _VALID_URL = r'^http://www.twitch.tv/(.*)$'
+    IE_NAME = u'justin.tv'
+
+    def report_extraction(self, file_id):
+        """Report information extraction."""
+        self._downloader.to_screen(u'[%s] %s: Extracting information' % (self.IE_NAME, file_id))
+
+    def _real_extract(self, url):
+        mobj = re.match(self._VALID_URL, url)
+        if mobj is None:
+            self._downloader.trouble(u'ERROR: invalid URL: %s' % url)
+            return
+        
+        api = 'http://api.justin.tv'
+        video_id = mobj.group(mobj.lastindex)
+        if mobj.lastindex == 1:
+            api += '/channel/archives/%s.json?limit=100'
+        else:
+            api += '/clip/show/%s.json'
+        api = api % (video_id,)
+        
+        self.report_extraction(video_id)
+        # TODO: multiple pages
+        # TODO: One broadcast may be split into multiple videos. The key
+        # 'broadcast_id' is the same for all parts, and 'broadcast_part'
+        # starts at 1 and increases. Can we treat all parts as one video?
+        try:
+            urlh = compat_urllib_request.urlopen(api)
+            webpage_bytes = urlh.read()
+            webpage = webpage_bytes.decode('utf-8', 'ignore')
+        except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
+            self._downloader.trouble(u'ERROR: unable to download video info JSON: %s' % compat_str(err))
+            return
+        
+        response = json.loads(webpage)
+        info = []
+        for clip in response:
+            video_url = clip['video_file_url']
+            if video_url:
+                video_extension = os.path.splitext(video_url)[1][1:]
+                video_date = re.sub('-', '', clip['created_on'][:10])
+                info.append({
+                    'id': clip['id'],
+                    'url': video_url,
+                    'title': clip['title'],
+                    'uploader': clip['user_id'] or clip['channel_id'],
+                    'upload_date': video_date,
+                    'ext': video_extension,
+                })
+        return info

+ 1 - 0
youtube_dl/__init__.py

@@ -399,6 +399,7 @@ def gen_extractors():
         GooglePlusIE(),
         GooglePlusIE(),
         ArteTvIE(),
         ArteTvIE(),
         NBAIE(),
         NBAIE(),
+        JustinTVIE(),
         GenericIE()
         GenericIE()
     ]
     ]