]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/tv4.py
[pbs] Fix extraction (closes #17109)
[yt-dlp.git] / youtube_dl / extractor / tv4.py
CommitLineData
50efb383
NJ
1# coding: utf-8
2from __future__ import unicode_literals
3
6ae36035
RA
4import re
5
50efb383
NJ
6from .common import InfoExtractor
7from ..utils import (
9d8985a1 8 int_or_none,
50efb383
NJ
9 parse_iso8601,
10)
11
12
13class TV4IE(InfoExtractor):
14 IE_DESC = 'tv4.se and tv4play.se'
15 _VALID_URL = r'''(?x)https?://(?:www\.)?
16 (?:
17 tv4\.se/(?:[^/]+)/klipp/(?:.*)-|
18 tv4play\.se/
19 (?:
319fc706 20 (?:program|barn)/(?:[^/]+/|(?:[^\?]+)\?video_id=)|
50efb383
NJ
21 iframe/video/|
22 film/|
23 sport/|
24 )
25 )(?P<id>[0-9]+)'''
c58b7ffe 26 _GEO_COUNTRIES = ['SE']
50efb383
NJ
27 _TESTS = [
28 {
29 'url': 'http://www.tv4.se/kalla-fakta/klipp/kalla-fakta-5-english-subtitles-2491650',
1f393a32 30 'md5': 'cb837212f342d77cec06e6dad190e96d',
50efb383
NJ
31 'info_dict': {
32 'id': '2491650',
33 'ext': 'mp4',
34 'title': 'Kalla Fakta 5 (english subtitles)',
ec85ded8 35 'thumbnail': r're:^https?://.*\.jpg$',
50efb383
NJ
36 'timestamp': int,
37 'upload_date': '20131125',
38 },
39 },
40 {
41 'url': 'http://www.tv4play.se/iframe/video/3054113',
1f393a32 42 'md5': 'cb837212f342d77cec06e6dad190e96d',
50efb383
NJ
43 'info_dict': {
44 'id': '3054113',
45 'ext': 'mp4',
46 'title': 'Så här jobbar ficktjuvarna - se avslöjande bilder',
ec85ded8 47 'thumbnail': r're:^https?://.*\.jpg$',
50efb383
NJ
48 'description': 'Unika bilder avslöjar hur turisternas fickor vittjas mitt på Stockholms central. Två experter på ficktjuvarna avslöjar knepen du ska se upp för.',
49 'timestamp': int,
50 'upload_date': '20150130',
51 },
52 },
53 {
54 'url': 'http://www.tv4play.se/sport/3060959',
55 'only_matching': True,
56 },
57 {
58 'url': 'http://www.tv4play.se/film/2378136',
59 'only_matching': True,
60 },
61 {
62 'url': 'http://www.tv4play.se/barn/looney-tunes?video_id=3062412',
63 'only_matching': True,
64 },
319fc706 65 {
fad9fc53 66 'url': 'http://www.tv4play.se/program/farang/3922081',
319fc706
S
67 'only_matching': True,
68 }
50efb383
NJ
69 ]
70
71 def _real_extract(self, url):
72 video_id = self._match_id(url)
73
74 info = self._download_json(
9d8985a1
S
75 'http://www.tv4play.se/player/assets/%s.json' % video_id,
76 video_id, 'Downloading video info JSON')
50efb383 77
9d8985a1 78 title = info['title']
50efb383 79
6ae36035
RA
80 manifest_url = self._download_json(
81 'https://playback-api.b17g.net/media/' + video_id,
82 video_id, query={
83 'service': 'tv4',
84 'device': 'browser',
85 'protocol': 'hls',
86 })['playbackItem']['manifestUrl']
87 formats = self._extract_m3u8_formats(
88 manifest_url, video_id, 'mp4',
89 'm3u8_native', m3u8_id='hls', fatal=False)
90 formats.extend(self._extract_mpd_formats(
91 manifest_url.replace('.m3u8', '.mpd'),
92 video_id, mpd_id='dash', fatal=False))
93 formats.extend(self._extract_f4m_formats(
94 manifest_url.replace('.m3u8', '.f4m'),
95 video_id, f4m_id='hds', fatal=False))
96 formats.extend(self._extract_ism_formats(
97 re.sub(r'\.ism/.+?\.m3u8', r'.ism/Manifest', manifest_url),
98 video_id, ism_id='mss', fatal=False))
c58b7ffe
S
99
100 if not formats and info.get('is_geo_restricted'):
101 self.raise_geo_restricted(countries=self._GEO_COUNTRIES)
102
50efb383
NJ
103 self._sort_formats(formats)
104
105 return {
106 'id': video_id,
9d8985a1 107 'title': title,
50efb383 108 'formats': formats,
6ae36035 109 # 'subtitles': subtitles,
50efb383
NJ
110 'description': info.get('description'),
111 'timestamp': parse_iso8601(info.get('broadcast_date_time')),
9d8985a1 112 'duration': int_or_none(info.get('duration')),
50efb383 113 'thumbnail': info.get('image'),
9d8985a1 114 'is_live': info.get('is_live') is True,
50efb383 115 }