1 # -*- coding: utf-8 -*-
2 from __future__ import unicode_literals
6 from .common import InfoExtractor
7 from ..utils import int_or_none
10 class TumblrIE(InfoExtractor):
11 _VALID_URL = r'http://(?P<blog_name>.*?)\.tumblr\.com/(?:post|video)/(?P<id>[0-9]+)(?:$|[/?#])'
13 'url': 'http://tatianamaslanydaily.tumblr.com/post/54196191430/orphan-black-dvd-extra-behind-the-scenes',
14 'md5': '479bb068e5b16462f5176a6828829767',
18 'title': 'tatiana maslany news, Orphan Black || DVD extra - behind the scenes ↳...',
19 'description': 'md5:37db8211e40b50c7c44e95da14f630b7',
20 'thumbnail': 're:http://.*\.jpg',
23 'url': 'http://5sostrum.tumblr.com/post/90208453769/yall-forgetting-the-greatest-keek-of-them-all',
24 'md5': 'bf348ef8c0ef84fbf1cbd6fa6e000359',
28 'title': '5SOS STRUM ;]',
29 'description': 'md5:dba62ac8639482759c8eb10ce474586a',
30 'thumbnail': 're:http://.*\.jpg',
33 'url': 'http://hdvideotest.tumblr.com/post/130323439814/test-description-for-my-hd-video',
34 'md5': '7ae503065ad150122dc3089f8cf1546c',
38 'title': 'HD Video Testing \u2014 Test description for my HD video',
39 'description': 'md5:97cc3ab5fcd27ee4af6356701541319c',
40 'thumbnail': 're:http://.*\.jpg',
46 'url': 'http://naked-yogi.tumblr.com/post/118312946248/naked-smoking-stretching',
47 'md5': 'de07e5211d60d4f3a2c3df757ea9f6ab',
51 'title': 'naked smoking & stretching',
52 'upload_date': '20150506',
53 'timestamp': 1430931613,
55 'uploader_id': '1638622',
56 'uploader': 'naked-yogi',
60 'url': 'http://camdamage.tumblr.com/post/98846056295/',
61 'md5': 'a9e0c8371ea1ca306d6554e3fecf50b6',
65 'title': 'Cam Damage-HD 720p',
66 'uploader': 'John Moyer',
67 'uploader_id': 'user32021558',
72 def _real_extract(self, url):
73 m_url = re.match(self._VALID_URL, url)
74 video_id = m_url.group('id')
75 blog = m_url.group('blog_name')
77 url = 'http://%s.tumblr.com/post/%s/' % (blog, video_id)
78 webpage, urlh = self._download_webpage_handle(url, video_id)
80 iframe_url = self._search_regex(
81 r'src=\'(https?://www\.tumblr\.com/video/[^\']+)\'',
82 webpage, 'iframe url', default=None)
83 if iframe_url is None:
84 return self.url_result(urlh.geturl(), 'Generic')
86 iframe = self._download_webpage(iframe_url, video_id, 'Downloading iframe page')
91 sd_url = self._search_regex(
92 r'<source[^>]+src=(["\'])(?P<url>.+?)\1', iframe,
93 'sd video url', default=None, group='url')
95 sources.append((sd_url, 'sd'))
97 options = self._parse_json(
99 r'data-crt-options=(["\'])(?P<options>.+?)\1', iframe,
100 'hd video url', default='', group='options'),
101 video_id, fatal=False)
103 duration = int_or_none(options.get('duration'))
104 hd_url = options.get('hdUrl')
106 sources.append((hd_url, 'hd'))
111 'format_id': format_id,
112 'height': int_or_none(self._search_regex(
113 r'/(\d{3,4})$', video_url, 'height', default=None)),
115 } for quality, (video_url, format_id) in enumerate(sources)]
117 self._sort_formats(formats)
119 # The only place where you can get a title, it's not complete,
120 # but searching in other places doesn't work for all videos
121 video_title = self._html_search_regex(
122 r'(?s)<title>(?P<title>.*?)(?: \| Tumblr)?</title>',
127 'title': video_title,
128 'description': self._og_search_description(webpage, default=None),
129 'thumbnail': self._og_search_thumbnail(webpage, default=None),
130 'duration': duration,