[twitter] Now Twitter serves the same file for Firefox and Chrome
[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 = config.get('status', {}).get('entities', [{}])[0].get('mediaInfo', {})
128         if media_info:
129             for media_variant in media_info['variants']:
130                 media_url = media_variant['url']
131                 if media_url.endswith('.m3u8'):
132                     formats.extend(self._extract_m3u8_formats(media_url, video_id, ext='mp4', m3u8_id='hls'))
133                 elif media_url.endswith('.mpd'):
134                     formats.extend(self._extract_mpd_formats(media_url, video_id, mpd_id='dash'))
135                 else:
136                     vbr = int_or_none(media_variant.get('bitRate'), scale=1000)
137                     a_format = {
138                         'url': media_url,
139                         'format_id': 'http-%d' % vbr if vbr else 'http',
140                         'vbr': vbr,
141                     }
142                     # Reported bitRate may be zero
143                     if not a_format['vbr']:
144                         del a_format['vbr']
145
146                     formats.append(a_format)
147
148             duration = float_or_none(media_info.get('duration', {}).get('nanos'), scale=1e9)
149
150         self._sort_formats(formats)
151
152         title = self._search_regex(r'<title>([^<]+)</title>', webpage, 'title')
153         thumbnail = config.get('posterImageUrl') or config.get('image_src')
154         duration = float_or_none(config.get('duration')) or duration
155
156         return {
157             'id': video_id,
158             'title': title,
159             'thumbnail': thumbnail,
160             'duration': duration,
161             'formats': formats,
162         }
163
164
165 class TwitterIE(InfoExtractor):
166     IE_NAME = 'twitter'
167     _VALID_URL = r'https?://(?:www\.|m\.|mobile\.)?twitter\.com/(?P<user_id>[^/]+)/status/(?P<id>\d+)'
168     _TEMPLATE_URL = 'https://twitter.com/%s/status/%s'
169
170     _TESTS = [{
171         'url': 'https://twitter.com/freethenipple/status/643211948184596480',
172         'info_dict': {
173             'id': '643211948184596480',
174             'ext': 'mp4',
175             'title': 'FREE THE NIPPLE - FTN supporters on Hollywood Blvd today!',
176             'thumbnail': 're:^https?://.*\.jpg',
177             'duration': 12.922,
178             'description': 'FREE THE NIPPLE on Twitter: "FTN supporters on Hollywood Blvd today! http://t.co/c7jHH749xJ"',
179             'uploader': 'FREE THE NIPPLE',
180             'uploader_id': 'freethenipple',
181         },
182         'params': {
183             'skip_download': True,  # requires ffmpeg
184         },
185     }, {
186         'url': 'https://twitter.com/giphz/status/657991469417025536/photo/1',
187         'md5': 'f36dcd5fb92bf7057f155e7d927eeb42',
188         'info_dict': {
189             'id': '657991469417025536',
190             'ext': 'mp4',
191             'title': 'Gifs - tu vai cai tu vai cai tu nao eh capaz disso tu vai cai',
192             'description': 'Gifs on Twitter: "tu vai cai tu vai cai tu nao eh capaz disso tu vai cai https://t.co/tM46VHFlO5"',
193             'thumbnail': 're:^https?://.*\.png',
194             'uploader': 'Gifs',
195             'uploader_id': 'giphz',
196         },
197         'expected_warnings': ['height', 'width'],
198     }, {
199         'url': 'https://twitter.com/starwars/status/665052190608723968',
200         'md5': '39b7199856dee6cd4432e72c74bc69d4',
201         'info_dict': {
202             'id': '665052190608723968',
203             'ext': 'mp4',
204             'title': 'Star Wars - A new beginning is coming December 18. Watch the official 60 second #TV spot for #StarWars: #TheForceAwakens.',
205             'description': 'Star Wars on Twitter: "A new beginning is coming December 18. Watch the official 60 second #TV spot for #StarWars: #TheForceAwakens."',
206             'uploader_id': 'starwars',
207             'uploader': 'Star Wars',
208         },
209     }, {
210         'url': 'https://twitter.com/BTNBrentYarina/status/705235433198714880',
211         'info_dict': {
212             'id': '705235433198714880',
213             'ext': 'mp4',
214             'title': 'Brent Yarina - Khalil Iverson\'s missed highlight dunk. And made highlight dunk. In one highlight.',
215             'description': 'Brent Yarina on Twitter: "Khalil Iverson\'s missed highlight dunk. And made highlight dunk. In one highlight."',
216             'uploader_id': 'BTNBrentYarina',
217             'uploader': 'Brent Yarina',
218         },
219         'params': {
220             # The same video as https://twitter.com/i/videos/tweet/705235433198714880
221             # Test case of TwitterCardIE
222             'skip_download': True,
223         },
224     }]
225
226     def _real_extract(self, url):
227         mobj = re.match(self._VALID_URL, url)
228         user_id = mobj.group('user_id')
229         twid = mobj.group('id')
230
231         webpage = self._download_webpage(self._TEMPLATE_URL % (user_id, twid), twid)
232
233         username = remove_end(self._og_search_title(webpage), ' on Twitter')
234
235         title = description = self._og_search_description(webpage).strip('').replace('\n', ' ').strip('“”')
236
237         # strip  'https -_t.co_BJYgOjSeGA' junk from filenames
238         title = re.sub(r'\s+(https?://[^ ]+)', '', title)
239
240         info = {
241             'uploader_id': user_id,
242             'uploader': username,
243             'webpage_url': url,
244             'description': '%s on Twitter: "%s"' % (username, description),
245             'title': username + ' - ' + title,
246         }
247
248         card_id = self._search_regex(
249             r'["\']/i/cards/tfw/v1/(\d+)', webpage, 'twitter card url', default=None)
250         if card_id:
251             card_url = 'https://twitter.com/i/cards/tfw/v1/' + card_id
252             info.update({
253                 '_type': 'url_transparent',
254                 'ie_key': 'TwitterCard',
255                 'url': card_url,
256             })
257             return info
258
259         mobj = re.search(r'''(?x)
260             <video[^>]+class="animated-gif"(?P<more_info>[^>]+)>\s*
261                 <source[^>]+video-src="(?P<url>[^"]+)"
262         ''', webpage)
263
264         if mobj:
265             more_info = mobj.group('more_info')
266             height = int_or_none(self._search_regex(
267                 r'data-height="(\d+)"', more_info, 'height', fatal=False))
268             width = int_or_none(self._search_regex(
269                 r'data-width="(\d+)"', more_info, 'width', fatal=False))
270             thumbnail = self._search_regex(
271                 r'poster="([^"]+)"', more_info, 'poster', fatal=False)
272             info.update({
273                 'id': twid,
274                 'url': mobj.group('url'),
275                 'height': height,
276                 'width': width,
277                 'thumbnail': thumbnail,
278             })
279             return info
280
281         if 'class="PlayableMedia' in webpage:
282             info.update({
283                 '_type': 'url_transparent',
284                 'ie_key': 'TwitterCard',
285                 'url': '%s//twitter.com/i/videos/tweet/%s' % (self.http_scheme(), twid),
286             })
287
288             return info
289
290         raise ExtractorError('There\'s no video in this tweet.')
291
292
293 class TwitterAmplifyIE(TwitterBaseIE):
294     IE_NAME = 'twitter:amplify'
295     _VALID_URL = 'https?://amp\.twimg\.com/v/(?P<id>[0-9a-f\-]{36})'
296
297     _TEST = {
298         'url': 'https://amp.twimg.com/v/0ba0c3c7-0af3-4c0a-bed5-7efd1ffa2951',
299         'md5': '7df102d0b9fd7066b86f3159f8e81bf6',
300         'info_dict': {
301             'id': '0ba0c3c7-0af3-4c0a-bed5-7efd1ffa2951',
302             'ext': 'mp4',
303             'title': 'Twitter Video',
304             'thumbnail': 're:^https?://.*',
305         },
306     }
307
308     def _real_extract(self, url):
309         video_id = self._match_id(url)
310         webpage = self._download_webpage(url, video_id)
311
312         vmap_url = self._html_search_meta(
313             'twitter:amplify:vmap', webpage, 'vmap url')
314         video_url = self._get_vmap_video_url(vmap_url, video_id)
315
316         thumbnails = []
317         thumbnail = self._html_search_meta(
318             'twitter:image:src', webpage, 'thumbnail', fatal=False)
319
320         def _find_dimension(target):
321             w = int_or_none(self._html_search_meta(
322                 'twitter:%s:width' % target, webpage, fatal=False))
323             h = int_or_none(self._html_search_meta(
324                 'twitter:%s:height' % target, webpage, fatal=False))
325             return w, h
326
327         if thumbnail:
328             thumbnail_w, thumbnail_h = _find_dimension('image')
329             thumbnails.append({
330                 'url': thumbnail,
331                 'width': thumbnail_w,
332                 'height': thumbnail_h,
333             })
334
335         video_w, video_h = _find_dimension('player')
336         formats = [{
337             'url': video_url,
338             'width': video_w,
339             'height': video_h,
340         }]
341
342         return {
343             'id': video_id,
344             'title': 'Twitter Video',
345             'formats': formats,
346             'thumbnails': thumbnails,
347         }