|
|
@ -45,11 +45,15 @@ class AudiMediaIE(InfoExtractor):
|
|
|
|
|
|
|
|
|
|
|
|
stream_url_hls = json_data.get('stream_url_hls')
|
|
|
|
stream_url_hls = json_data.get('stream_url_hls')
|
|
|
|
if stream_url_hls:
|
|
|
|
if stream_url_hls:
|
|
|
|
formats.extend(self._extract_m3u8_formats(stream_url_hls, video_id, 'mp4', entry_protocol='m3u8_native', m3u8_id='hls', fatal=False))
|
|
|
|
formats.extend(self._extract_m3u8_formats(
|
|
|
|
|
|
|
|
stream_url_hls, video_id, 'mp4',
|
|
|
|
|
|
|
|
entry_protocol='m3u8_native', m3u8_id='hls', fatal=False))
|
|
|
|
|
|
|
|
|
|
|
|
stream_url_hds = json_data.get('stream_url_hds')
|
|
|
|
stream_url_hds = json_data.get('stream_url_hds')
|
|
|
|
if stream_url_hds:
|
|
|
|
if stream_url_hds:
|
|
|
|
formats.extend(self._extract_f4m_formats(json_data.get('stream_url_hds') + '?hdcore=3.4.0', video_id, -1, f4m_id='hds', fatal=False))
|
|
|
|
formats.extend(self._extract_f4m_formats(
|
|
|
|
|
|
|
|
stream_url_hds + '?hdcore=3.4.0',
|
|
|
|
|
|
|
|
video_id, f4m_id='hds', fatal=False))
|
|
|
|
|
|
|
|
|
|
|
|
for video_version in json_data.get('video_versions'):
|
|
|
|
for video_version in json_data.get('video_versions'):
|
|
|
|
video_version_url = video_version.get('download_url') or video_version.get('stream_url')
|
|
|
|
video_version_url = video_version.get('download_url') or video_version.get('stream_url')
|
|
|
|