yt-dlc/youtube_dl/extractor/rte.py

63 lines
2.1 KiB
Python
Raw Normal View History

2014-10-24 04:19:01 +00:00
# coding: utf-8
from __future__ import unicode_literals
from .common import InfoExtractor
from ..utils import (
float_or_none,
)
class RteIE(InfoExtractor):
_VALID_URL = r'https?://(?:www\.)?rte\.ie/player/[^/]{2,3}/show/[^/]+/(?P<id>[0-9]+)'
2014-10-24 04:19:01 +00:00
_TEST = {
'url': 'http://www.rte.ie/player/ie/show/iwitness-862/10478715/',
2014-10-24 04:19:01 +00:00
'info_dict': {
'id': '10478715',
2014-10-24 04:19:01 +00:00
'ext': 'mp4',
'title': 'Watch iWitness online',
2014-10-24 04:19:01 +00:00
'thumbnail': 're:^https?://.*\.jpg$',
'description': 'iWitness : The spirit of Ireland, one voice and one minute at a time.',
'duration': 60.046,
},
'params': {
'skip_download': 'f4m fails with --test atm'
2014-10-24 04:19:01 +00:00
}
}
2015-01-10 16:59:07 +00:00
2014-10-24 04:19:01 +00:00
def _real_extract(self, url):
video_id = self._match_id(url)
webpage = self._download_webpage(url, video_id)
2014-10-24 04:19:01 +00:00
title = self._og_search_title(webpage)
description = self._html_search_meta('description', webpage, 'description')
duration = float_or_none(self._html_search_meta(
'duration', webpage, 'duration', fatal=False), 1000)
thumbnail_id = self._search_regex(
r'<meta name="thumbnail" content="uri:irus:(.*?)" />', webpage, 'thumbnail')
thumbnail = 'http://img.rasset.ie/' + thumbnail_id + '.jpg'
2014-10-24 04:19:01 +00:00
feeds_url = self._html_search_meta("feeds-prefix", webpage, 'feeds url') + video_id
json_string = self._download_json(feeds_url, video_id)
2014-10-24 04:19:01 +00:00
# f4m_url = server + relative_url
f4m_url = json_string['shows'][0]['media:group'][0]['rte:server'] + json_string['shows'][0]['media:group'][0]['url']
f4m_formats = self._extract_f4m_formats(f4m_url, video_id)
2014-10-26 19:38:51 +00:00
f4m_formats = [{
'format_id': f['format_id'],
'url': f['url'],
'ext': 'mp4',
'width': f['width'],
'height': f['height'],
} for f in f4m_formats]
2014-10-24 04:19:01 +00:00
return {
'id': video_id,
'title': title,
'formats': f4m_formats,
'description': description,
'thumbnail': thumbnail,
'duration': duration,
}