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