[nhk] extract rtmpt format

This commit is contained in:
Remita Amine 2019-04-21 13:25:04 +01:00
parent 061d1cd948
commit 47cfa00516
1 changed files with 7 additions and 6 deletions

View File

@ -69,12 +69,13 @@ class NhkVodIE(InfoExtractor):
info['formats'] = self._extract_m3u8_formats(
'https://nhks-vh.akamaihd.net/i%s/master.m3u8' % audio_path,
episode_id, 'm4a', m3u8_id='hls', fatal=False)
info['formats'].append({
'ext': 'flv',
'format_id': 'flv',
'url': 'rtmp://flv.nhk.or.jp/ondemand/mp4:flv' + audio_path,
'vcodec': 'none',
})
for proto in ('rtmpt', 'rtmp'):
info['formats'].append({
'ext': 'flv',
'format_id': proto,
'url': '%s://flv.nhk.or.jp/ondemand/mp4:flv%s' % (proto, audio_path),
'vcodec': 'none',
})
for f in info['formats']:
f['language'] = lang
return info