diff options
Diffstat (limited to 'yt_dlp/extractor/ivi.py')
-rw-r--r-- | yt_dlp/extractor/ivi.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/ivi.py b/yt_dlp/extractor/ivi.py index 064279663..c167ee500 100644 --- a/yt_dlp/extractor/ivi.py +++ b/yt_dlp/extractor/ivi.py @@ -165,7 +165,7 @@ class IviIE(InfoExtractor): content_format = f.get('content_format') if not f_url: continue - if (not self._downloader.params.get('allow_unplayable_formats') + if (not self.get_param('allow_unplayable_formats') and ('-MDRM-' in content_format or '-FPS-' in content_format)): continue formats.append({ |