Browse Source
[ruutu] Disable DASH formats (closes #12322)
Due to causing out of sync issue
master
Sergey M․
7 years ago
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D
1 changed files with
3 additions and
0 deletions
-
youtube_dl/extractor/ruutu.py
|
|
@ -82,6 +82,9 @@ class RuutuIE(InfoExtractor): |
|
|
|
formats.extend(self._extract_f4m_formats( |
|
|
|
video_url, video_id, f4m_id='hds', fatal=False)) |
|
|
|
elif ext == 'mpd': |
|
|
|
# video-only and audio-only streams are of different |
|
|
|
# duration resulting in out of sync issue |
|
|
|
continue |
|
|
|
formats.extend(self._extract_mpd_formats( |
|
|
|
video_url, video_id, mpd_id='dash', fatal=False)) |
|
|
|
else: |
|
|
|