2 from __future__
import unicode_literals
4 from .common
import InfoExtractor
5 from ..compat
import compat_urllib_parse_urlparse
15 class RuutuIE(InfoExtractor
):
16 _VALID_URL
= r
'https?://(?:www\.)?(?:ruutu|supla)\.fi/(?:video|supla)/(?P<id>\d+)'
19 'url': 'http://www.ruutu.fi/video/2058907',
20 'md5': 'ab2093f39be1ca8581963451b3c0234f',
24 'title': 'Oletko aina halunnut tietää mitä tapahtuu vain hetki ennen lähetystä? - Nyt se selvisi!',
25 'description': 'md5:cfc6ccf0e57a814360df464a91ff67d6',
26 'thumbnail': r
're:^https?://.*\.jpg$',
32 'url': 'http://www.ruutu.fi/video/2057306',
33 'md5': '065a10ae4d5b8cfd9d0c3d332465e3d9',
37 'title': 'Superpesis: katso koko kausi Ruudussa',
38 'description': 'md5:bfb7336df2a12dc21d18fa696c9f8f23',
39 'thumbnail': r
're:^https?://.*\.jpg$',
45 'url': 'http://www.supla.fi/supla/2231370',
46 'md5': 'df14e782d49a2c0df03d3be2a54ef949',
50 'title': 'Osa 1: Mikael Jungner',
51 'description': 'md5:7d90f358c47542e3072ff65d7b1bcffe',
52 'thumbnail': r
're:^https?://.*\.jpg$',
56 # Episode where <SourceFile> is "NOT-USED", but has other
57 # downloadable sources available.
59 'url': 'http://www.ruutu.fi/video/3193728',
60 'only_matching': True,
64 'url': 'https://www.supla.fi/supla/3382410',
65 'md5': 'b9d7155fed37b2ebf6021d74c4b8e908',
69 'title': 'Mikä ihmeen poltergeist?',
70 'description': 'md5:bbb6963df17dfd0ecd9eb9a61bf14b52',
71 'thumbnail': r
're:^https?://.*\.jpg$',
74 'expected_warnings': ['HTTP Error 502: Bad Gateway'],
78 def _real_extract(self
, url
):
79 video_id
= self
._match
_id
(url
)
81 video_xml
= self
._download
_xml
(
82 'https://gatling.nelonenmedia.fi/media-xml-cache', video_id
,
83 query
={'id': video_id
})
88 def extract_formats(node
):
90 if child
.tag
.endswith('Files'):
91 extract_formats(child
)
92 elif child
.tag
.endswith('File'):
93 video_url
= child
.text
94 if (not video_url
or video_url
in processed_urls
95 or any(p
in video_url
for p
in ('NOT_USED', 'NOT-USED'))):
97 processed_urls
.append(video_url
)
98 ext
= determine_ext(video_url
)
100 formats
.extend(self
._extract
_m
3u8_formats
(
101 video_url
, video_id
, 'mp4', m3u8_id
='hls', fatal
=False))
103 formats
.extend(self
._extract
_f
4m
_formats
(
104 video_url
, video_id
, f4m_id
='hds', fatal
=False))
106 # video-only and audio-only streams are of different
107 # duration resulting in out of sync issue
109 formats
.extend(self
._extract
_mpd
_formats
(
110 video_url
, video_id
, mpd_id
='dash', fatal
=False))
111 elif ext
== 'mp3' or child
.tag
== 'AudioMediaFile':
113 'format_id': 'audio',
118 proto
= compat_urllib_parse_urlparse(video_url
).scheme
119 if not child
.tag
.startswith('HTTP') and proto
!= 'rtmp':
121 preference
= -1 if proto
== 'rtmp' else 1
122 label
= child
.get('label')
123 tbr
= int_or_none(child
.get('bitrate'))
124 format_id
= '%s-%s' % (proto
, label
if label
else tbr
) if label
or tbr
else proto
125 if not self
._is
_valid
_url
(video_url
, video_id
, format_id
):
127 width
, height
= [int_or_none(x
) for x
in child
.get('resolution', 'x').split('x')[:2]]
129 'format_id': format_id
,
134 'preference': preference
,
137 extract_formats(video_xml
.find('./Clip'))
139 drm
= xpath_text(video_xml
, './Clip/DRM', default
=None)
140 if not formats
and drm
:
141 raise ExtractorError('This video is DRM protected.', expected
=True)
143 self
._sort
_formats
(formats
)
147 'title': xpath_attr(video_xml
, './/Behavior/Program', 'program_name', 'title', fatal
=True),
148 'description': xpath_attr(video_xml
, './/Behavior/Program', 'description', 'description'),
149 'thumbnail': xpath_attr(video_xml
, './/Behavior/Startpicture', 'href', 'thumbnail'),
150 'duration': int_or_none(xpath_text(video_xml
, './/Runtime', 'duration')),
151 'age_limit': int_or_none(xpath_text(video_xml
, './/AgeLimit', 'age limit')),