Merge branch 'jython-support'
[youtube-dl] / youtube_dl / extractor / twitter.py
1 # coding: utf-8
2 from __future__ import unicode_literals
3
4 import re
5
6 from .common import InfoExtractor
7 from ..utils import (
8     float_or_none,
9     xpath_text,
10     remove_end,
11     int_or_none,
12     ExtractorError,
13 )
14
15
16 class TwitterBaseIE(InfoExtractor):
17     def _get_vmap_video_url(self, vmap_url, video_id):
18         vmap_data = self._download_xml(vmap_url, video_id)
19         return xpath_text(vmap_data, './/MediaFile').strip()
20
21
22 class TwitterCardIE(TwitterBaseIE):
23     IE_NAME = 'twitter:card'
24     _VALID_URL = r'https?://(?:www\.)?twitter\.com/i/(?:cards/tfw/v1|videos/tweet)/(?P<id>\d+)'
25     _TESTS = [
26         {
27             'url': 'https://twitter.com/i/cards/tfw/v1/560070183650213889',
28             # MD5 checksums are different in different places
29             'info_dict': {
30                 'id': '560070183650213889',
31                 'ext': 'mp4',
32                 'title': 'Twitter Card',
33                 'thumbnail': 're:^https?://.*\.jpg$',
34                 'duration': 30.033,
35             }
36         },
37         {
38             'url': 'https://twitter.com/i/cards/tfw/v1/623160978427936768',
39             'md5': '7ee2a553b63d1bccba97fbed97d9e1c8',
40             'info_dict': {
41                 'id': '623160978427936768',
42                 'ext': 'mp4',
43                 'title': 'Twitter Card',
44                 'thumbnail': 're:^https?://.*\.jpg',
45                 'duration': 80.155,
46             },
47         },
48         {
49             'url': 'https://twitter.com/i/cards/tfw/v1/654001591733886977',
50             'md5': 'd4724ffe6d2437886d004fa5de1043b3',
51             'info_dict': {
52                 'id': 'dq4Oj5quskI',
53                 'ext': 'mp4',
54                 'title': 'Ubuntu 11.10 Overview',
55                 'description': 'Take a quick peek at what\'s new and improved in Ubuntu 11.10.\n\nOnce installed take a look at 10 Things to Do After Installing: http://www.omgubuntu.co.uk/2011/10/10-things-to-do-after-installing-ubuntu-11-10/',
56                 'upload_date': '20111013',
57                 'uploader': 'OMG! Ubuntu!',
58                 'uploader_id': 'omgubuntu',
59             },
60             'add_ie': ['Youtube'],
61         },
62         {
63             'url': 'https://twitter.com/i/cards/tfw/v1/665289828897005568',
64             'md5': 'ab2745d0b0ce53319a534fccaa986439',
65             'info_dict': {
66                 'id': 'iBb2x00UVlv',
67                 'ext': 'mp4',
68                 'upload_date': '20151113',
69                 'uploader_id': '1189339351084113920',
70                 'uploader': 'ArsenalTerje',
71                 'title': 'Vine by ArsenalTerje',
72             },
73             'add_ie': ['Vine'],
74         }, {
75             'url': 'https://twitter.com/i/videos/tweet/705235433198714880',
76             'md5': '3846d0a07109b5ab622425449b59049d',
77             'info_dict': {
78                 'id': '705235433198714880',
79                 'ext': 'mp4',
80                 'title': 'Twitter web player',
81                 'thumbnail': 're:^https?://.*\.jpg',
82             },
83         },
84     ]
85
86     def _real_extract(self, url):
87         video_id = self._match_id(url)
88
89         config = None
90         formats = []
91         duration = None
92
93         webpage = self._download_webpage(url, video_id)
94
95         iframe_url = self._html_search_regex(
96             r'<iframe[^>]+src="((?:https?:)?//(?:www.youtube.com/embed/[^"]+|(?:www\.)?vine\.co/v/\w+/card))"',
97             webpage, 'video iframe', default=None)
98         if iframe_url:
99             return self.url_result(iframe_url)
100
101         config = self._parse_json(self._html_search_regex(
102             r'data-(?:player-)?config="([^"]+)"', webpage, 'data player config'),
103             video_id)
104
105         playlist = config.get('playlist')
106         if playlist:
107             video_url = playlist[0]['source']
108
109             f = {
110                 'url': video_url,
111             }
112
113             m = re.search(r'/(?P<width>\d+)x(?P<height>\d+)/', video_url)
114             if m:
115                 f.update({
116                     'width': int(m.group('width')),
117                     'height': int(m.group('height')),
118                 })
119             formats.append(f)
120
121         vmap_url = config.get('vmapUrl') or config.get('vmap_url')
122         if vmap_url:
123             formats.append({
124                 'url': self._get_vmap_video_url(vmap_url, video_id),
125             })
126
127         media_info = None
128
129         for entity in config.get('status', {}).get('entities', []):
130             if 'mediaInfo' in entity:
131                 media_info = entity['mediaInfo']
132
133         if media_info:
134             for media_variant in media_info['variants']:
135                 media_url = media_variant['url']
136                 if media_url.endswith('.m3u8'):
137                     formats.extend(self._extract_m3u8_formats(media_url, video_id, ext='mp4', m3u8_id='hls'))
138                 elif media_url.endswith('.mpd'):
139                     formats.extend(self._extract_mpd_formats(media_url, video_id, mpd_id='dash'))
140                 else:
141                     vbr = int_or_none(media_variant.get('bitRate'), scale=1000)
142                     a_format = {
143                         'url': media_url,
144                         'format_id': 'http-%d' % vbr if vbr else 'http',
145                         'vbr': vbr,
146                     }
147                     # Reported bitRate may be zero
148                     if not a_format['vbr']:
149                         del a_format['vbr']
150
151                     formats.append(a_format)
152
153             duration = float_or_none(media_info.get('duration', {}).get('nanos'), scale=1e9)
154
155         self._sort_formats(formats)
156
157         title = self._search_regex(r'<title>([^<]+)</title>', webpage, 'title')
158         thumbnail = config.get('posterImageUrl') or config.get('image_src')
159         duration = float_or_none(config.get('duration')) or duration
160
161         return {
162             'id': video_id,
163             'title': title,
164             'thumbnail': thumbnail,
165             'duration': duration,
166             'formats': formats,
167         }
168
169
170 class TwitterIE(InfoExtractor):
171     IE_NAME = 'twitter'
172     _VALID_URL = r'https?://(?:www\.|m\.|mobile\.)?twitter\.com/(?P<user_id>[^/]+)/status/(?P<id>\d+)'
173     _TEMPLATE_URL = 'https://twitter.com/%s/status/%s'
174
175     _TESTS = [{
176         'url': 'https://twitter.com/freethenipple/status/643211948184596480',
177         'info_dict': {
178             'id': '643211948184596480',
179             'ext': 'mp4',
180             'title': 'FREE THE NIPPLE - FTN supporters on Hollywood Blvd today!',
181             'thumbnail': 're:^https?://.*\.jpg',
182             'duration': 12.922,
183             'description': 'FREE THE NIPPLE on Twitter: "FTN supporters on Hollywood Blvd today! http://t.co/c7jHH749xJ"',
184             'uploader': 'FREE THE NIPPLE',
185             'uploader_id': 'freethenipple',
186         },
187         'params': {
188             'skip_download': True,  # requires ffmpeg
189         },
190     }, {
191         'url': 'https://twitter.com/giphz/status/657991469417025536/photo/1',
192         'md5': 'f36dcd5fb92bf7057f155e7d927eeb42',
193         'info_dict': {
194             'id': '657991469417025536',
195             'ext': 'mp4',
196             'title': 'Gifs - tu vai cai tu vai cai tu nao eh capaz disso tu vai cai',
197             'description': 'Gifs on Twitter: "tu vai cai tu vai cai tu nao eh capaz disso tu vai cai https://t.co/tM46VHFlO5"',
198             'thumbnail': 're:^https?://.*\.png',
199             'uploader': 'Gifs',
200             'uploader_id': 'giphz',
201         },
202         'expected_warnings': ['height', 'width'],
203     }, {
204         'url': 'https://twitter.com/starwars/status/665052190608723968',
205         'md5': '39b7199856dee6cd4432e72c74bc69d4',
206         'info_dict': {
207             'id': '665052190608723968',
208             'ext': 'mp4',
209             'title': 'Star Wars - A new beginning is coming December 18. Watch the official 60 second #TV spot for #StarWars: #TheForceAwakens.',
210             'description': 'Star Wars on Twitter: "A new beginning is coming December 18. Watch the official 60 second #TV spot for #StarWars: #TheForceAwakens."',
211             'uploader_id': 'starwars',
212             'uploader': 'Star Wars',
213         },
214     }, {
215         'url': 'https://twitter.com/BTNBrentYarina/status/705235433198714880',
216         'info_dict': {
217             'id': '705235433198714880',
218             'ext': 'mp4',
219             'title': 'Brent Yarina - Khalil Iverson\'s missed highlight dunk. And made highlight dunk. In one highlight.',
220             'description': 'Brent Yarina on Twitter: "Khalil Iverson\'s missed highlight dunk. And made highlight dunk. In one highlight."',
221             'uploader_id': 'BTNBrentYarina',
222             'uploader': 'Brent Yarina',
223         },
224         'params': {
225             # The same video as https://twitter.com/i/videos/tweet/705235433198714880
226             # Test case of TwitterCardIE
227             'skip_download': True,
228         },
229     }, {
230         'url': 'https://twitter.com/jaydingeer/status/700207533655363584',
231         'md5': '',
232         'info_dict': {
233             'id': '700207533655363584',
234             'ext': 'mp4',
235             'title': 'jay - BEAT PROD: @suhmeduh #Damndaniel',
236             'description': 'jay on Twitter: "BEAT PROD: @suhmeduh  https://t.co/HBrQ4AfpvZ #Damndaniel https://t.co/byBooq2ejZ"',
237             'thumbnail': 're:^https?://.*\.jpg',
238             'uploader': 'jay',
239             'uploader_id': 'jaydingeer',
240         },
241         'params': {
242             'skip_download': True,  # requires ffmpeg
243         },
244     }]
245
246     def _real_extract(self, url):
247         mobj = re.match(self._VALID_URL, url)
248         user_id = mobj.group('user_id')
249         twid = mobj.group('id')
250
251         webpage = self._download_webpage(self._TEMPLATE_URL % (user_id, twid), twid)
252
253         username = remove_end(self._og_search_title(webpage), ' on Twitter')
254
255         title = description = self._og_search_description(webpage).strip('').replace('\n', ' ').strip('“”')
256
257         # strip  'https -_t.co_BJYgOjSeGA' junk from filenames
258         title = re.sub(r'\s+(https?://[^ ]+)', '', title)
259
260         info = {
261             'uploader_id': user_id,
262             'uploader': username,
263             'webpage_url': url,
264             'description': '%s on Twitter: "%s"' % (username, description),
265             'title': username + ' - ' + title,
266         }
267
268         card_id = self._search_regex(
269             r'["\']/i/cards/tfw/v1/(\d+)', webpage, 'twitter card url', default=None)
270         if card_id:
271             card_url = 'https://twitter.com/i/cards/tfw/v1/' + card_id
272             info.update({
273                 '_type': 'url_transparent',
274                 'ie_key': 'TwitterCard',
275                 'url': card_url,
276             })
277             return info
278
279         mobj = re.search(r'''(?x)
280             <video[^>]+class="animated-gif"(?P<more_info>[^>]+)>\s*
281                 <source[^>]+video-src="(?P<url>[^"]+)"
282         ''', webpage)
283
284         if mobj:
285             more_info = mobj.group('more_info')
286             height = int_or_none(self._search_regex(
287                 r'data-height="(\d+)"', more_info, 'height', fatal=False))
288             width = int_or_none(self._search_regex(
289                 r'data-width="(\d+)"', more_info, 'width', fatal=False))
290             thumbnail = self._search_regex(
291                 r'poster="([^"]+)"', more_info, 'poster', fatal=False)
292             info.update({
293                 'id': twid,
294                 'url': mobj.group('url'),
295                 'height': height,
296                 'width': width,
297                 'thumbnail': thumbnail,
298             })
299             return info
300
301         if 'class="PlayableMedia' in webpage:
302             info.update({
303                 '_type': 'url_transparent',
304                 'ie_key': 'TwitterCard',
305                 'url': '%s//twitter.com/i/videos/tweet/%s' % (self.http_scheme(), twid),
306             })
307
308             return info
309
310         raise ExtractorError('There\'s no video in this tweet.')
311
312
313 class TwitterAmplifyIE(TwitterBaseIE):
314     IE_NAME = 'twitter:amplify'
315     _VALID_URL = 'https?://amp\.twimg\.com/v/(?P<id>[0-9a-f\-]{36})'
316
317     _TEST = {
318         'url': 'https://amp.twimg.com/v/0ba0c3c7-0af3-4c0a-bed5-7efd1ffa2951',
319         'md5': '7df102d0b9fd7066b86f3159f8e81bf6',
320         'info_dict': {
321             'id': '0ba0c3c7-0af3-4c0a-bed5-7efd1ffa2951',
322             'ext': 'mp4',
323             'title': 'Twitter Video',
324             'thumbnail': 're:^https?://.*',
325         },
326     }
327
328     def _real_extract(self, url):
329         video_id = self._match_id(url)
330         webpage = self._download_webpage(url, video_id)
331
332         vmap_url = self._html_search_meta(
333             'twitter:amplify:vmap', webpage, 'vmap url')
334         video_url = self._get_vmap_video_url(vmap_url, video_id)
335
336         thumbnails = []
337         thumbnail = self._html_search_meta(
338             'twitter:image:src', webpage, 'thumbnail', fatal=False)
339
340         def _find_dimension(target):
341             w = int_or_none(self._html_search_meta(
342                 'twitter:%s:width' % target, webpage, fatal=False))
343             h = int_or_none(self._html_search_meta(
344                 'twitter:%s:height' % target, webpage, fatal=False))
345             return w, h
346
347         if thumbnail:
348             thumbnail_w, thumbnail_h = _find_dimension('image')
349             thumbnails.append({
350                 'url': thumbnail,
351                 'width': thumbnail_w,
352                 'height': thumbnail_h,
353             })
354
355         video_w, video_h = _find_dimension('player')
356         formats = [{
357             'url': video_url,
358             'width': video_w,
359             'height': video_h,
360         }]
361
362         return {
363             'id': video_id,
364             'title': 'Twitter Video',
365             'formats': formats,
366             'thumbnails': thumbnails,
367         }