2 from __future__ import unicode_literals
6 from .common import InfoExtractor
7 from ..compat import compat_urllib_request
15 class TwitterCardIE(InfoExtractor):
16 _VALID_URL = r'https?://(?:www\.)?twitter\.com/i/cards/tfw/v1/(?P<id>\d+)'
19 'url': 'https://twitter.com/i/cards/tfw/v1/560070183650213889',
20 'md5': '7d2f6b4d2eb841a7ccc893d479bfceb4',
22 'id': '560070183650213889',
24 'title': 'TwitterCard',
25 'thumbnail': 're:^https?://.*\.jpg$',
30 'url': 'https://twitter.com/i/cards/tfw/v1/623160978427936768',
31 'md5': '7ee2a553b63d1bccba97fbed97d9e1c8',
33 'id': '623160978427936768',
35 'title': 'TwitterCard',
36 'thumbnail': 're:^https?://.*\.jpg',
42 def _real_extract(self, url):
43 video_id = self._match_id(url)
45 # Different formats served for different User-Agents
47 'Mozilla/5.0 (X11; Linux x86_64; rv:10.0) Gecko/20150101 Firefox/20.0 (Chrome)', # mp4
48 'Mozilla/5.0 (Windows NT 5.2; WOW64; rv:38.0) Gecko/20100101 Firefox/38.0', # webm
53 for user_agent in USER_AGENTS:
54 request = compat_urllib_request.Request(url)
55 request.add_header('User-Agent', user_agent)
56 webpage = self._download_webpage(request, video_id)
58 config = self._parse_json(
59 unescapeHTML(self._search_regex(
60 r'data-player-config="([^"]+)"', webpage, 'data player config')),
62 if 'playlist' not in config:
63 if 'vmapUrl' in config:
64 vmap_data = self._download_xml(config['vmapUrl'], video_id)
65 video_url = xpath_text(vmap_data, './/MediaFile').strip()
69 ext = re.search(r'\.([a-z0-9]{2,4})(\?.+)?$', video_url)
71 f['ext'] = ext.group(1)
73 break # same video regardless of UA
76 video_url = config['playlist'][0]['source']
82 m = re.search(r'/(?P<width>\d+)x(?P<height>\d+)/', video_url)
85 'width': int(m.group('width')),
86 'height': int(m.group('height')),
89 self._sort_formats(formats)
91 thumbnail = config.get('posterImageUrl')
92 duration = float_or_none(config.get('duration'))
96 'title': 'TwitterCard',
97 'thumbnail': thumbnail,
103 class TwitterIE(TwitterCardIE):
104 _VALID_URL = r'https?://(?:www|m|mobile)?\.?twitter\.com/(?P<id>[^/]+/status/\d+)'
107 'url': 'https://twitter.com/freethenipple/status/643211948184596480',
108 'md5': '31cd83a116fc41f99ae3d909d4caf6a0',
110 'id': '643211948184596480',
112 'title': 'freethenipple - FTN supporters on Hollywood Blvd today!',
113 'thumbnail': 're:^https?://.*\.jpg',
115 'description': 'FREE THE NIPPLE on Twitter: "FTN supporters on Hollywood Blvd today! http://t.co/c7jHH749xJ"',
116 'uploader': 'FREE THE NIPPLE',
117 'uploader_id': 'freethenipple',
121 def _real_extract(self, url):
122 id = self._match_id(url)
123 username, twid = re.match(r'([^/]+)/status/(\d+)', id).groups()
125 url = re.sub(r'https?://(m|mobile)\.', 'https://', url)
126 webpage = self._download_webpage(url, 'tweet: ' + url)
127 description = unescapeHTML(self._search_regex('<title>\s*(.+?)\s*</title>', webpage, 'title'))
128 title = description.replace('\n', ' ')
129 splitdesc = re.match(r'^(.+?)\s*on Twitter:\s* "(.+?)"$', title)
131 name, title = splitdesc.groups()
132 title = re.sub(r'\s*https?://[^ ]+', '', title) # strip 'https -_t.co_BJYgOjSeGA' junk from filenames
133 card_id = self._search_regex(r'["\']/i/cards/tfw/v1/(\d+)', webpage, '/i/card/...')
134 card_url = 'https://twitter.com/i/cards/tfw/v1/' + card_id
136 '_type': 'url_transparent',
137 'ie_key': 'TwitterCard',
138 'uploader_id': username,
142 'description': description,
143 'title': username + ' - ' + title,