mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-05 19:17:07 +01:00
[rtl2] extract more formats and metadata
This commit is contained in:
parent
ae806db628
commit
9c5b5f2115
@ -2,7 +2,9 @@
|
|||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
import re
|
import re
|
||||||
|
|
||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
|
from ..utils import int_or_none
|
||||||
|
|
||||||
|
|
||||||
class RTL2IE(InfoExtractor):
|
class RTL2IE(InfoExtractor):
|
||||||
@ -13,7 +15,7 @@ class RTL2IE(InfoExtractor):
|
|||||||
'id': 'folge-203-0',
|
'id': 'folge-203-0',
|
||||||
'ext': 'f4v',
|
'ext': 'f4v',
|
||||||
'title': 'GRIP sucht den Sommerkönig',
|
'title': 'GRIP sucht den Sommerkönig',
|
||||||
'description': 'Matthias, Det und Helge treten gegeneinander an.'
|
'description': 'md5:e3adbb940fd3c6e76fa341b8748b562f'
|
||||||
},
|
},
|
||||||
'params': {
|
'params': {
|
||||||
# rtmp download
|
# rtmp download
|
||||||
@ -25,7 +27,7 @@ class RTL2IE(InfoExtractor):
|
|||||||
'id': '21040-anna-erwischt-alex',
|
'id': '21040-anna-erwischt-alex',
|
||||||
'ext': 'mp4',
|
'ext': 'mp4',
|
||||||
'title': 'Anna erwischt Alex!',
|
'title': 'Anna erwischt Alex!',
|
||||||
'description': 'Anna ist Alex\' Tochter bei Köln 50667.'
|
'description': 'Anna nimmt ihrem Vater nicht ab, dass er nicht spielt. Und tatsächlich erwischt sie ihn auf frischer Tat.'
|
||||||
},
|
},
|
||||||
'params': {
|
'params': {
|
||||||
# rtmp download
|
# rtmp download
|
||||||
@ -52,34 +54,47 @@ class RTL2IE(InfoExtractor):
|
|||||||
r'vico_id\s*:\s*([0-9]+)', webpage, 'vico_id')
|
r'vico_id\s*:\s*([0-9]+)', webpage, 'vico_id')
|
||||||
vivi_id = self._html_search_regex(
|
vivi_id = self._html_search_regex(
|
||||||
r'vivi_id\s*:\s*([0-9]+)', webpage, 'vivi_id')
|
r'vivi_id\s*:\s*([0-9]+)', webpage, 'vivi_id')
|
||||||
info_url = 'http://www.rtl2.de/video/php/get_video.php?vico_id=' + vico_id + '&vivi_id=' + vivi_id
|
|
||||||
|
|
||||||
info = self._download_json(info_url, video_id)
|
info = self._download_json(
|
||||||
|
'http://www.rtl2.de/sites/default/modules/rtl2/mediathek/php/get_video_jw.php',
|
||||||
|
video_id, query={
|
||||||
|
'vico_id': vico_id,
|
||||||
|
'vivi_id': vivi_id,
|
||||||
|
})
|
||||||
video_info = info['video']
|
video_info = info['video']
|
||||||
title = video_info['titel']
|
title = video_info['titel']
|
||||||
description = video_info.get('beschreibung')
|
|
||||||
thumbnail = video_info.get('image')
|
|
||||||
|
|
||||||
download_url = video_info['streamurl']
|
formats = []
|
||||||
download_url = download_url.replace('\\', '')
|
|
||||||
stream_url = 'mp4:' + self._html_search_regex(r'ondemand/(.*)', download_url, 'stream URL')
|
rtmp_url = video_info.get('streamurl')
|
||||||
|
if rtmp_url:
|
||||||
|
rtmp_url = rtmp_url.replace('\\', '')
|
||||||
|
stream_url = 'mp4:' + self._html_search_regex(r'/ondemand/(.+)', rtmp_url, 'stream URL')
|
||||||
rtmp_conn = ['S:connect', 'O:1', 'NS:pageUrl:' + url, 'NB:fpad:0', 'NN:videoFunction:1', 'O:0']
|
rtmp_conn = ['S:connect', 'O:1', 'NS:pageUrl:' + url, 'NB:fpad:0', 'NN:videoFunction:1', 'O:0']
|
||||||
|
|
||||||
formats = [{
|
formats.append({
|
||||||
'url': download_url,
|
'format_id': 'rtmp',
|
||||||
|
'url': rtmp_url,
|
||||||
'play_path': stream_url,
|
'play_path': stream_url,
|
||||||
'player_url': 'http://www.rtl2.de/flashplayer/vipo_player.swf',
|
'player_url': 'http://www.rtl2.de/flashplayer/vipo_player.swf',
|
||||||
'page_url': url,
|
'page_url': url,
|
||||||
'flash_version': 'LNX 11,2,202,429',
|
'flash_version': 'LNX 11,2,202,429',
|
||||||
'rtmp_conn': rtmp_conn,
|
'rtmp_conn': rtmp_conn,
|
||||||
'no_resume': True,
|
'no_resume': True,
|
||||||
}]
|
'preference': 1,
|
||||||
|
})
|
||||||
|
|
||||||
|
m3u8_url = video_info.get('streamurl_hls')
|
||||||
|
if m3u8_url:
|
||||||
|
formats.extend(self._extract_akamai_formats(m3u8_url, video_id))
|
||||||
|
|
||||||
self._sort_formats(formats)
|
self._sort_formats(formats)
|
||||||
|
|
||||||
return {
|
return {
|
||||||
'id': video_id,
|
'id': video_id,
|
||||||
'title': title,
|
'title': title,
|
||||||
'thumbnail': thumbnail,
|
'thumbnail': video_info.get('image'),
|
||||||
'description': description,
|
'description': video_info.get('beschreibung'),
|
||||||
|
'duration': int_or_none(video_info.get('duration')),
|
||||||
'formats': formats,
|
'formats': formats,
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user