]> jfr.im git - yt-dlp.git/blame - youtube_dlc/extractor/gamespot.py
Update to ytdl-2021.01.03
[yt-dlp.git] / youtube_dlc / extractor / gamespot.py
CommitLineData
c1195541
PH
1from __future__ import unicode_literals
2
1ac5705f 3from .once import OnceIE
29f7c58a 4from ..compat import compat_urllib_parse_unquote
bf64ff72 5
c45aa560 6
1ac5705f 7class GameSpotIE(OnceIE):
5547014a 8 _VALID_URL = r'https?://(?:www\.)?gamespot\.com/(?:video|article|review)s/(?:[^/]+/\d+-|embed/)(?P<id>\d+)'
34fe5a94 9 _TESTS = [{
a2d5a4ee
S
10 'url': 'http://www.gamespot.com/videos/arma-3-community-guide-sitrep-i/2300-6410818/',
11 'md5': 'b2a30deaa8654fcccd43713a6b6a4825',
12 'info_dict': {
13 'id': 'gs-2300-6410818',
14 'ext': 'mp4',
15 'title': 'Arma 3 - Community Guide: SITREP I',
c1195541 16 'description': 'Check out this video where some of the basics of Arma 3 is explained.',
34fe5a94 17 },
29f7c58a 18 'skip': 'manifest URL give HTTP Error 404: Not Found',
34fe5a94
JMF
19 }, {
20 'url': 'http://www.gamespot.com/videos/the-witcher-3-wild-hunt-xbox-one-now-playing/2300-6424837/',
29f7c58a 21 'md5': '173ea87ad762cf5d3bf6163dceb255a6',
34fe5a94
JMF
22 'info_dict': {
23 'id': 'gs-2300-6424837',
7b0d333a
NP
24 'ext': 'mp4',
25 'title': 'Now Playing - The Witcher 3: Wild Hunt',
34fe5a94
JMF
26 'description': 'Join us as we take a look at the early hours of The Witcher 3: Wild Hunt and more.',
27 },
b0f43310
RA
28 }, {
29 'url': 'https://www.gamespot.com/videos/embed/6439218/',
30 'only_matching': True,
388beb86
RA
31 }, {
32 'url': 'https://www.gamespot.com/articles/the-last-of-us-2-receives-new-ps4-trailer/1100-6454469/',
33 'only_matching': True,
5547014a
RA
34 }, {
35 'url': 'https://www.gamespot.com/reviews/gears-of-war-review/1900-6161188/',
36 'only_matching': True,
34fe5a94 37 }]
bf64ff72 38
bf64ff72 39 def _real_extract(self, url):
a32f2531 40 page_id = self._match_id(url)
ebdf2af7 41 webpage = self._download_webpage(url, page_id)
29f7c58a 42 data_video = self._parse_json(self._html_search_regex(
43 r'data-video=(["\'])({.*?})\1', webpage,
44 'video data', group=2), page_id)
45 title = compat_urllib_parse_unquote(data_video['title'])
34fe5a94 46 streams = data_video['videoStreams']
c45aa560 47 formats = []
29f7c58a 48
49 m3u8_url = streams.get('adaptive_stream')
1ac5705f 50 if m3u8_url:
1ac5705f
RA
51 m3u8_formats = self._extract_m3u8_formats(
52 m3u8_url, page_id, 'mp4', 'm3u8_native',
53 m3u8_id='hls', fatal=False)
29f7c58a 54 for f in m3u8_formats:
55 formats.append(f)
56 http_f = f.copy()
57 del http_f['manifest_url']
58 http_f.update({
59 'format_id': f['format_id'].replace('hls-', 'http-'),
60 'protocol': 'http',
61 'url': f['url'].replace('.m3u8', '.mp4'),
62 })
63 formats.append(http_f)
1ac5705f 64
29f7c58a 65 mpd_url = streams.get('adaptive_dash')
66 if mpd_url:
67 formats.extend(self._extract_mpd_formats(
68 mpd_url, page_id, mpd_id='dash', fatal=False))
1ac5705f 69
1ac5705f 70 self._sort_formats(formats)
bf64ff72 71
fb7abb31 72 return {
29f7c58a 73 'id': data_video.get('guid') or page_id,
a32f2531 74 'display_id': page_id,
29f7c58a 75 'title': title,
c45aa560 76 'formats': formats,
a32f2531 77 'description': self._html_search_meta('description', webpage),
c45aa560
JMF
78 'thumbnail': self._og_search_thumbnail(webpage),
79 }