]> jfr.im git - yt-dlp.git/blame - youtube_dlc/extractor/gamespot.py
Implemented all Youtube Feeds (ytfav, ytwatchlater, ytsubs, ythistory, ytrec) and...
[yt-dlp.git] / youtube_dlc / extractor / gamespot.py
CommitLineData
c1195541
PH
1from __future__ import unicode_literals
2
bf64ff72 3import re
bf64ff72 4
1ac5705f 5from .once import OnceIE
1cc79574 6from ..compat import (
1f80e360 7 compat_urllib_parse_unquote,
1cc79574
PH
8)
9from ..utils import (
c45aa560 10 unescapeHTML,
1ac5705f
RA
11 url_basename,
12 dict_get,
bf64ff72
YK
13)
14
c45aa560 15
1ac5705f 16class GameSpotIE(OnceIE):
5547014a 17 _VALID_URL = r'https?://(?:www\.)?gamespot\.com/(?:video|article|review)s/(?:[^/]+/\d+-|embed/)(?P<id>\d+)'
34fe5a94 18 _TESTS = [{
a2d5a4ee
S
19 'url': 'http://www.gamespot.com/videos/arma-3-community-guide-sitrep-i/2300-6410818/',
20 'md5': 'b2a30deaa8654fcccd43713a6b6a4825',
21 'info_dict': {
22 'id': 'gs-2300-6410818',
23 'ext': 'mp4',
24 'title': 'Arma 3 - Community Guide: SITREP I',
c1195541 25 'description': 'Check out this video where some of the basics of Arma 3 is explained.',
34fe5a94
JMF
26 },
27 }, {
28 'url': 'http://www.gamespot.com/videos/the-witcher-3-wild-hunt-xbox-one-now-playing/2300-6424837/',
29 'info_dict': {
30 'id': 'gs-2300-6424837',
7b0d333a
NP
31 'ext': 'mp4',
32 'title': 'Now Playing - The Witcher 3: Wild Hunt',
34fe5a94
JMF
33 'description': 'Join us as we take a look at the early hours of The Witcher 3: Wild Hunt and more.',
34 },
7b0d333a
NP
35 'params': {
36 'skip_download': True, # m3u8 downloads
37 },
b0f43310
RA
38 }, {
39 'url': 'https://www.gamespot.com/videos/embed/6439218/',
40 'only_matching': True,
388beb86
RA
41 }, {
42 'url': 'https://www.gamespot.com/articles/the-last-of-us-2-receives-new-ps4-trailer/1100-6454469/',
43 'only_matching': True,
5547014a
RA
44 }, {
45 'url': 'https://www.gamespot.com/reviews/gears-of-war-review/1900-6161188/',
46 'only_matching': True,
34fe5a94 47 }]
bf64ff72 48
bf64ff72 49 def _real_extract(self, url):
a32f2531 50 page_id = self._match_id(url)
ebdf2af7 51 webpage = self._download_webpage(url, page_id)
a32f2531
PH
52 data_video_json = self._search_regex(
53 r'data-video=["\'](.*?)["\']', webpage, 'data video')
1ac5705f 54 data_video = self._parse_json(unescapeHTML(data_video_json), page_id)
34fe5a94 55 streams = data_video['videoStreams']
bf64ff72 56
1ac5705f 57 manifest_url = None
c45aa560 58 formats = []
34fe5a94 59 f4m_url = streams.get('f4m_stream')
1ac5705f
RA
60 if f4m_url:
61 manifest_url = f4m_url
62 formats.extend(self._extract_f4m_formats(
63 f4m_url + '?hdcore=3.7.0', page_id, f4m_id='hds', fatal=False))
b0f43310 64 m3u8_url = dict_get(streams, ('m3u8_stream', 'adaptive_stream'))
1ac5705f
RA
65 if m3u8_url:
66 manifest_url = m3u8_url
67 m3u8_formats = self._extract_m3u8_formats(
68 m3u8_url, page_id, 'mp4', 'm3u8_native',
69 m3u8_id='hls', fatal=False)
70 formats.extend(m3u8_formats)
71 progressive_url = dict_get(
b0f43310 72 streams, ('progressive_hd', 'progressive_high', 'progressive_low', 'other_lr'))
1ac5705f
RA
73 if progressive_url and manifest_url:
74 qualities_basename = self._search_regex(
ec85ded8 75 r'/([^/]+)\.csmil/',
1ac5705f
RA
76 manifest_url, 'qualities basename', default=None)
77 if qualities_basename:
78 QUALITIES_RE = r'((,\d+)+,?)'
79 qualities = self._search_regex(
80 QUALITIES_RE, qualities_basename,
81 'qualities', default=None)
82 if qualities:
83 qualities = list(map(lambda q: int(q), qualities.strip(',').split(',')))
84 qualities.sort()
85 http_template = re.sub(QUALITIES_RE, r'%d', qualities_basename)
86 http_url_basename = url_basename(progressive_url)
87 if m3u8_formats:
88 self._sort_formats(m3u8_formats)
89 m3u8_formats = list(filter(
ff99fe52 90 lambda f: f.get('vcodec') != 'none', m3u8_formats))
1ac5705f
RA
91 if len(qualities) == len(m3u8_formats):
92 for q, m3u8_format in zip(qualities, m3u8_formats):
93 f = m3u8_format.copy()
94 f.update({
95 'url': progressive_url.replace(
96 http_url_basename, http_template % q),
97 'format_id': f['format_id'].replace('hls', 'http'),
98 'protocol': 'http',
99 })
100 formats.append(f)
101 else:
102 for q in qualities:
103 formats.append({
104 'url': progressive_url.replace(
105 http_url_basename, http_template % q),
106 'ext': 'mp4',
107 'format_id': 'http-%d' % q,
108 'tbr': q,
109 })
110
111 onceux_json = self._search_regex(
112 r'data-onceux-options=["\'](.*?)["\']', webpage, 'data video', default=None)
113 if onceux_json:
114 onceux_url = self._parse_json(unescapeHTML(onceux_json), page_id).get('metadataUri')
115 if onceux_url:
116 formats.extend(self._extract_once_formats(re.sub(
a5203935 117 r'https?://[^/]+', 'http://once.unicornmedia.com', onceux_url),
d4e31b72 118 http_formats_preference=-1))
1ac5705f
RA
119
120 if not formats:
34fe5a94
JMF
121 for quality in ['sd', 'hd']:
122 # It's actually a link to a flv file
123 flv_url = streams.get('f4m_{0}'.format(quality))
124 if flv_url is not None:
125 formats.append({
126 'url': flv_url,
127 'ext': 'flv',
128 'format_id': quality,
129 })
1ac5705f 130 self._sort_formats(formats)
bf64ff72 131
fb7abb31 132 return {
c45aa560 133 'id': data_video['guid'],
a32f2531 134 'display_id': page_id,
1f80e360 135 'title': compat_urllib_parse_unquote(data_video['title']),
c45aa560 136 'formats': formats,
a32f2531 137 'description': self._html_search_meta('description', webpage),
c45aa560
JMF
138 'thumbnail': self._og_search_thumbnail(webpage),
139 }