diff options
author | pukkandan <pukkandan@gmail.com> | 2021-02-12 10:10:31 +0530 |
---|---|---|
committer | pukkandan <pukkandan@gmail.com> | 2021-02-12 20:29:29 +0530 |
commit | 1ea241292770c6027b951aa045e00eadd140b9f5 (patch) | |
tree | 4c0851a186d9c97d222cb91f26813d0db10c7e93 /youtube_dlc/extractor/brightcove.py | |
parent | 63ad4d43ebb826725539235f4fa08c85c046fdc1 (diff) |
Minor bugfixes
* `__real_download` should be false when ffmpeg unavailable and no download
* Mistakes in #70
* `allow_playlist_files` was not correctly pass through
Diffstat (limited to 'youtube_dlc/extractor/brightcove.py')
-rw-r--r-- | youtube_dlc/extractor/brightcove.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dlc/extractor/brightcove.py b/youtube_dlc/extractor/brightcove.py index 901bfa585..091992ebd 100644 --- a/youtube_dlc/extractor/brightcove.py +++ b/youtube_dlc/extractor/brightcove.py @@ -482,7 +482,7 @@ class BrightcoveNewIE(AdobePassIE): if not self._downloader.params.get('allow_unplayable_formats') and (container == 'WVM' or source.get('key_systems')): num_drm_sources += 1 continue - elif ext == 'ism' and self._downloader.params.get('allow_unplayable_formats'): + elif ext == 'ism' and not self._downloader.params.get('allow_unplayable_formats'): continue elif ext == 'm3u8' or container == 'M2TS': if not src: |