diff options
author | Sergey M․ <dstftw@gmail.com> | 2019-03-05 23:54:25 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2019-03-05 23:56:42 +0700 |
commit | c17eb5b4b06cfa2c8bffb378b0a5c84d4c5a6834 (patch) | |
tree | 42f8c3275e760f505d93e385cee99ffef8ad2162 | |
parent | d9eb580a796ef6c9a248fdd8896ccf85349c35eb (diff) |
[rai] Improve extraction (closes #20253)
-rw-r--r-- | youtube_dl/extractor/rai.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/rai.py b/youtube_dl/extractor/rai.py index 149153b8f..207a6c247 100644 --- a/youtube_dl/extractor/rai.py +++ b/youtube_dl/extractor/rai.py @@ -74,11 +74,11 @@ class RaiBaseIE(InfoExtractor): if (ext == 'm3u8' and platform != 'mon') or (ext == 'f4m' and platform != 'flash'): continue - if ext == 'm3u8': + if ext == 'm3u8' or 'format=m3u8' in media_url or platform == 'mon': formats.extend(self._extract_m3u8_formats( media_url, video_id, 'mp4', 'm3u8_native', m3u8_id='hls', fatal=False)) - elif ext == 'f4m': + elif ext == 'f4m' or platform == 'flash': manifest_url = update_url_query( media_url.replace('manifest#live_hds.f4m', 'manifest.f4m'), {'hdcore': '3.7.0', 'plugin': 'aasp-3.7.0.39.44'}) |