[nhk] extract rtmpt format
This commit is contained in:
parent
061d1cd948
commit
47cfa00516
1 changed files with 7 additions and 6 deletions
|
@ -69,10 +69,11 @@ class NhkVodIE(InfoExtractor):
|
||||||
info['formats'] = self._extract_m3u8_formats(
|
info['formats'] = self._extract_m3u8_formats(
|
||||||
'https://nhks-vh.akamaihd.net/i%s/master.m3u8' % audio_path,
|
'https://nhks-vh.akamaihd.net/i%s/master.m3u8' % audio_path,
|
||||||
episode_id, 'm4a', m3u8_id='hls', fatal=False)
|
episode_id, 'm4a', m3u8_id='hls', fatal=False)
|
||||||
|
for proto in ('rtmpt', 'rtmp'):
|
||||||
info['formats'].append({
|
info['formats'].append({
|
||||||
'ext': 'flv',
|
'ext': 'flv',
|
||||||
'format_id': 'flv',
|
'format_id': proto,
|
||||||
'url': 'rtmp://flv.nhk.or.jp/ondemand/mp4:flv' + audio_path,
|
'url': '%s://flv.nhk.or.jp/ondemand/mp4:flv%s' % (proto, audio_path),
|
||||||
'vcodec': 'none',
|
'vcodec': 'none',
|
||||||
})
|
})
|
||||||
for f in info['formats']:
|
for f in info['formats']:
|
||||||
|
|
Loading…
Reference in a new issue