From 0551a02b82b4209422e0734150e0186210cd0723 Mon Sep 17 00:00:00 2001 From: dinesh Date: Mon, 27 Oct 2014 01:08:51 +0530 Subject: [PATCH] [Rte] Improve extractor --- youtube_dl/extractor/rte.py | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/youtube_dl/extractor/rte.py b/youtube_dl/extractor/rte.py index ab12bb5fd..8d4e94e55 100644 --- a/youtube_dl/extractor/rte.py +++ b/youtube_dl/extractor/rte.py @@ -18,7 +18,7 @@ class RteIE(InfoExtractor): 'title': 'Nine News', 'thumbnail': 're:^https?://.*\.jpg$', 'description': 'The One O\'Clock News followed by Weather.', - 'duration': 1622963.0, + 'duration': 1622.963, } } @@ -29,7 +29,7 @@ class RteIE(InfoExtractor): title = self._og_search_title(webpage) description = self._search_regex(r'', webpage, 'description') - duration = float_or_none(self._html_search_meta('duration', webpage, 'duration')) + duration = float_or_none(self._html_search_meta('duration', webpage, 'duration'), 1000) thumbnail_id = self._search_regex(r'', webpage, 'thumbnail') thumbnail = 'http://img.rasset.ie/' + thumbnail_id + '.jpg' @@ -40,8 +40,13 @@ class RteIE(InfoExtractor): # 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) - for f in f4m_formats: - del f['tbr'] + f4m_formats = [{ + 'format_id': f['format_id'], + 'url': f['url'], + 'ext': 'mp4', + 'width': f['width'], + 'height': f['height'], + } for f in f4m_formats ] return { 'id': video_id, -- 2.30.2