Merge remote-tracking branch 't0mm0/x-minus'
authorPhilipp Hagemeister <phihag@phihag.de>
Tue, 25 Nov 2014 08:22:33 +0000 (09:22 +0100)
committerPhilipp Hagemeister <phihag@phihag.de>
Tue, 25 Nov 2014 08:22:33 +0000 (09:22 +0100)
AUTHORS
youtube_dl/extractor/__init__.py
youtube_dl/extractor/tmz.py [new file with mode: 0644]

diff --git a/AUTHORS b/AUTHORS
index 24358d548aaa3b95350fac356bff0bd1f9ebc6b4..cc129896b17d53deb8bad5be7d5651c48ee32540 100644 (file)
--- a/AUTHORS
+++ b/AUTHORS
@@ -86,3 +86,4 @@ Mauroy Sébastien
 William Sewell
 Dao Hoang Son
 Oskar Jauch
+Matthew Rayfield
index 45edb6a24740233fbd39ed397e778f35d26941c3..3e2133f5c0754ddf64b0447d0c5aa310e7fdb711 100644 (file)
@@ -393,6 +393,7 @@ from .thesixtyone import TheSixtyOneIE
 from .thisav import ThisAVIE
 from .tinypic import TinyPicIE
 from .tlc import TlcIE, TlcDeIE
+from .tmz import TMZIE
 from .tnaflix import TNAFlixIE
 from .thvideo import (
     THVideoIE,
diff --git a/youtube_dl/extractor/tmz.py b/youtube_dl/extractor/tmz.py
new file mode 100644 (file)
index 0000000..827aa08
--- /dev/null
@@ -0,0 +1,32 @@
+# coding: utf-8
+from __future__ import unicode_literals
+
+from .common import InfoExtractor
+
+
+class TMZIE(InfoExtractor):
+    _VALID_URL = r'https?://(?:www\.)?tmz\.com/videos/(?P<id>[^/]+)/?'
+    _TEST = {
+        'url': 'http://www.tmz.com/videos/0_okj015ty/',
+        'md5': '791204e3bf790b1426cb2db0706184c0',
+        'info_dict': {
+            'id': '0_okj015ty',
+            'url': 'http://tmz.vo.llnwd.net/o28/2014-03/13/0_okj015ty_0_rt8ro3si_2.mp4',
+            'ext': 'mp4',
+            'title': 'Kim Kardashian\'s Boobs Unlock a Mystery!',
+            'description': 'Did Kim Kardasain try to one-up Khloe by one-upping Kylie???  Or is she just showing off her amazing boobs?',
+            'thumbnail': 'http://cdnbakmi.kaltura.com/p/591531/sp/59153100/thumbnail/entry_id/0_okj015ty/version/100002/acv/182/width/640',
+        }
+    }
+
+    def _real_extract(self, url):
+        video_id = self._match_id(url)
+        webpage = self._download_webpage(url, video_id)
+
+        return {
+            'id': video_id,
+            'url': self._html_search_meta('VideoURL', webpage, fatal=True),
+            'title': self._og_search_title(webpage),
+            'description': self._og_search_description(webpage),
+            'thumbnail': self._html_search_meta('ThumbURL', webpage),
+        }