about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2017-03-02 23:53:46 +0700
committerSergey M․ <dstftw@gmail.com>2017-03-02 23:53:46 +0700
commit4d345bf17b3040ebfedd079e656e1ca658749187 (patch)
tree2bcc0c47bb55b38a6d10ab41a32e2f580e800336
parent250eea6821a5715e2ee7cade8539fcd42177603d (diff)
downloadyoutube-dl-4d345bf17b3040ebfedd079e656e1ca658749187.tar.gz
youtube-dl-4d345bf17b3040ebfedd079e656e1ca658749187.tar.xz
youtube-dl-4d345bf17b3040ebfedd079e656e1ca658749187.zip
[ruutu] Disable DASH formats (closes #12322)
Due to causing out of sync issue
-rw-r--r--youtube_dl/extractor/ruutu.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/youtube_dl/extractor/ruutu.py b/youtube_dl/extractor/ruutu.py
index 20d01754a..6c09df25a 100644
--- a/youtube_dl/extractor/ruutu.py
+++ b/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: