mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 01:02:48 +01:00
[ruutu] Disable DASH formats (closes #12322)
Due to causing out of sync issue
This commit is contained in:
parent
250eea6821
commit
4d345bf17b
@ -82,6 +82,9 @@ def extract_formats(node):
|
||||
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:
|
||||
|
Loading…
Reference in New Issue
Block a user