]> Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/tmz.py
c5c6fdc51b19fce90d45298858ce345bc901307e
[youtubedl] / youtube_dl / extractor / tmz.py
1 # coding: utf-8
2 from __future__ import unicode_literals
3
4 from .common import InfoExtractor
5
6
7 class TMZIE(InfoExtractor):
8 _VALID_URL = r'https?://(?:www\.)?tmz\.com/videos/(?P<id>[^/]+)/?'
9 _TEST = {
10 'url': 'http://www.tmz.com/videos/0_okj015ty/',
11 'md5': '791204e3bf790b1426cb2db0706184c0',
12 'info_dict': {
13 'id': '0_okj015ty',
14 'url': 'http://tmz.vo.llnwd.net/o28/2014-03/13/0_okj015ty_0_rt8ro3si_2.mp4',
15 'ext': 'mp4',
16 'title': 'Kim Kardashian\'s Boobs Unlock a Mystery!',
17 'description': 'Did Kim Kardasain try to one-up Khloe by one-upping Kylie??? Or is she just showing off her amazing boobs?',
18 'thumbnail': r're:http://cdnbakmi\.kaltura\.com/.*thumbnail.*',
19 }
20 }
21
22 def _real_extract(self, url):
23 video_id = self._match_id(url)
24 webpage = self._download_webpage(url, video_id)
25
26 return {
27 'id': video_id,
28 'url': self._html_search_meta('VideoURL', webpage, fatal=True),
29 'title': self._og_search_title(webpage),
30 'description': self._og_search_description(webpage),
31 'thumbnail': self._html_search_meta('ThumbURL', webpage),
32 }