]> jfr.im git - yt-dlp.git/blame - yt_dlp/extractor/tver.py
[cleanup] Fix infodict returned fields (#8906)
[yt-dlp.git] / yt_dlp / extractor / tver.py
CommitLineData
29f7c58a 1from .common import InfoExtractor
29f7c58a 2from ..utils import (
42c5458a 3 ExtractorError,
b58f8d8f 4 join_nonempty,
29f7c58a 5 smuggle_url,
870efdee 6 str_or_none,
b58f8d8f 7 strip_or_none,
42c5458a 8 traverse_obj,
29f7c58a 9)
10
11
12class TVerIE(InfoExtractor):
870efdee 13 _VALID_URL = r'https?://(?:www\.)?tver\.jp/(?:(?P<type>lp|corner|series|episodes?|feature|tokyo2020/video)/)+(?P<id>[a-zA-Z0-9]+)'
29f7c58a 14 _TESTS = [{
870efdee 15 'skip': 'videos are only available for 7 days',
b58f8d8f 16 'url': 'https://tver.jp/episodes/ep83nf3w4p',
870efdee 17 'info_dict': {
b58f8d8f
L
18 'title': '家事ヤロウ!!! 売り場席巻のチーズSP&財前直見×森泉親子の脱東京暮らし密着!',
19 'description': 'md5:dc2c06b6acc23f1e7c730c513737719b',
20 'series': '家事ヤロウ!!!',
21 'episode': '売り場席巻のチーズSP&財前直見×森泉親子の脱東京暮らし密着!',
22 'alt_title': '売り場席巻のチーズSP&財前直見×森泉親子の脱東京暮らし密着!',
23 'channel': 'テレビ朝日',
870efdee
LNO
24 },
25 'add_ie': ['BrightcoveNew'],
12a64f27 26 }, {
870efdee 27 'url': 'https://tver.jp/corner/f0103888',
12a64f27 28 'only_matching': True,
29 }, {
870efdee 30 'url': 'https://tver.jp/lp/f0033031',
12a64f27 31 'only_matching': True,
29f7c58a 32 }]
29f7c58a 33 BRIGHTCOVE_URL_TEMPLATE = 'http://players.brightcove.net/%s/default_default/index.html?videoId=%s'
870efdee
LNO
34 _PLATFORM_UID = None
35 _PLATFORM_TOKEN = None
29f7c58a 36
37 def _real_initialize(self):
870efdee
LNO
38 create_response = self._download_json(
39 'https://platform-api.tver.jp/v2/api/platform_users/browser/create', None,
40 note='Creating session', data=b'device_type=pc', headers={
41 'Origin': 'https://s.tver.jp',
42 'Referer': 'https://s.tver.jp/',
43 'Content-Type': 'application/x-www-form-urlencoded',
44 })
45 self._PLATFORM_UID = traverse_obj(create_response, ('result', 'platform_uid'))
46 self._PLATFORM_TOKEN = traverse_obj(create_response, ('result', 'platform_token'))
29f7c58a 47
48 def _real_extract(self, url):
870efdee
LNO
49 video_id, video_type = self._match_valid_url(url).group('id', 'type')
50 if video_type not in {'series', 'episodes'}:
51 webpage = self._download_webpage(url, video_id, note='Resolving to new URL')
52 video_id = self._match_id(self._search_regex(
53 (r'canonical"\s*href="(https?://tver\.jp/[^"]+)"', r'&link=(https?://tver\.jp/[^?&]+)[?&]'),
54 webpage, 'url regex'))
6837633a
L
55
56 episode_info = self._download_json(
57 f'https://platform-api.tver.jp/service/api/v1/callEpisode/{video_id}?require_data=mylist,later[epefy106ur],good[epefy106ur],resume[epefy106ur]',
58 video_id, fatal=False,
59 query={
60 'platform_uid': self._PLATFORM_UID,
61 'platform_token': self._PLATFORM_TOKEN,
62 }, headers={
63 'x-tver-platform-type': 'web'
64 })
65 episode_content = traverse_obj(
66 episode_info, ('result', 'episode', 'content')) or {}
67
870efdee
LNO
68 video_info = self._download_json(
69 f'https://statics.tver.jp/content/episode/{video_id}.json', video_id,
6837633a
L
70 query={
71 'v': str_or_none(episode_content.get('version')) or '5',
72 }, headers={
870efdee
LNO
73 'Origin': 'https://tver.jp',
74 'Referer': 'https://tver.jp/',
75 })
76 p_id = video_info['video']['accountID']
25237027 77 r_id = traverse_obj(video_info, ('video', ('videoRefID', 'videoID')), get_all=False)
870efdee
LNO
78 if not r_id:
79 raise ExtractorError('Failed to extract reference ID for Brightcove')
80 if not r_id.isdigit():
81 r_id = f'ref:{r_id}'
41d1cca3 82
6837633a
L
83 episode = strip_or_none(episode_content.get('title'))
84 series = str_or_none(episode_content.get('seriesTitle'))
b58f8d8f
L
85 title = (
86 join_nonempty(series, episode, delim=' ')
87 or str_or_none(video_info.get('title')))
6837633a
L
88 provider = str_or_none(episode_content.get('productionProviderName'))
89 onair_label = str_or_none(episode_content.get('broadcastDateLabel'))
b58f8d8f 90
41d1cca3 91 return {
29f7c58a 92 '_type': 'url_transparent',
b58f8d8f
L
93 'title': title,
94 'series': series,
95 'episode': episode,
96 # an another title which is considered "full title" for some viewers
97 'alt_title': join_nonempty(title, provider, onair_label, delim=' '),
98 'channel': provider,
870efdee
LNO
99 'description': str_or_none(video_info.get('description')),
100 'url': smuggle_url(
101 self.BRIGHTCOVE_URL_TEMPLATE % (p_id, r_id), {'geo_countries': ['JP']}),
41d1cca3 102 'ie_key': 'BrightcoveNew',
29f7c58a 103 }