2 from __future__ import unicode_literals
4 from .common import InfoExtractor
5 from ..compat import compat_urllib_parse_urlparse
14 class RuutuIE(InfoExtractor):
15 _VALID_URL = r'https?://(?:www\.)?ruutu\.fi/video/(?P<id>\d+)'
18 'url': 'http://www.ruutu.fi/video/2058907',
19 'md5': 'ab2093f39be1ca8581963451b3c0234f',
23 'title': 'Oletko aina halunnut tietää mitä tapahtuu vain hetki ennen lähetystä? - Nyt se selvisi!',
24 'description': 'md5:cfc6ccf0e57a814360df464a91ff67d6',
25 'thumbnail': 're:^https?://.*\.jpg$',
31 'url': 'http://www.ruutu.fi/video/2057306',
32 'md5': '065a10ae4d5b8cfd9d0c3d332465e3d9',
36 'title': 'Superpesis: katso koko kausi Ruudussa',
37 'description': 'md5:da2736052fef3b2bd5e0005e63c25eac',
38 'thumbnail': 're:^https?://.*\.jpg$',
45 def _real_extract(self, url):
46 video_id = self._match_id(url)
48 video_xml = self._download_xml(
49 'http://gatling.ruutu.fi/media-xml-cache?id=%s' % video_id, video_id)
54 def extract_formats(node):
56 if child.tag.endswith('Files'):
57 extract_formats(child)
58 elif child.tag.endswith('File'):
59 video_url = child.text
60 if (not video_url or video_url in processed_urls or
61 any(p in video_url for p in ('NOT_USED', 'NOT-USED'))):
63 processed_urls.append(video_url)
64 ext = determine_ext(video_url)
66 formats.extend(self._extract_m3u8_formats(
67 video_url, video_id, 'mp4', m3u8_id='hls', fatal=False))
69 formats.extend(self._extract_f4m_formats(
70 video_url, video_id, f4m_id='hds', fatal=False))
72 proto = compat_urllib_parse_urlparse(video_url).scheme
73 if not child.tag.startswith('HTTP') and proto != 'rtmp':
75 preference = -1 if proto == 'rtmp' else 1
76 label = child.get('label')
77 tbr = int_or_none(child.get('bitrate'))
78 format_id = '%s-%s' % (proto, label if label else tbr) if label or tbr else proto
79 if not self._is_valid_url(video_url, video_id, format_id):
81 width, height = [int_or_none(x) for x in child.get('resolution', 'x').split('x')[:2]]
83 'format_id': format_id,
88 'preference': preference,
91 extract_formats(video_xml.find('./Clip'))
92 self._sort_formats(formats)
96 'title': xpath_attr(video_xml, './/Behavior/Program', 'program_name', 'title', fatal=True),
97 'description': xpath_attr(video_xml, './/Behavior/Program', 'description', 'description'),
98 'thumbnail': xpath_attr(video_xml, './/Behavior/Startpicture', 'href', 'thumbnail'),
99 'duration': int_or_none(xpath_text(video_xml, './/Runtime', 'duration')),
100 'age_limit': int_or_none(xpath_text(video_xml, './/AgeLimit', 'age limit')),