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