diff options
Diffstat (limited to 'yt_dlp')
-rw-r--r-- | yt_dlp/YoutubeDL.py | 6 | ||||
-rw-r--r-- | yt_dlp/downloader/common.py | 3 |
2 files changed, 6 insertions, 3 deletions
diff --git a/yt_dlp/YoutubeDL.py b/yt_dlp/YoutubeDL.py index 7e9c0949b..e812f4775 100644 --- a/yt_dlp/YoutubeDL.py +++ b/yt_dlp/YoutubeDL.py @@ -1685,6 +1685,8 @@ class YoutubeDL: def __process_playlist(self, ie_result, download): """Process each entry in the playlist""" + assert ie_result['_type'] in ('playlist', 'multi_video') + title = ie_result.get('title') or ie_result.get('id') or '<Untitled>' self.to_screen(f'[download] Downloading playlist: {title}') @@ -3540,7 +3542,9 @@ class YoutubeDL: def simplified_codec(f, field): assert field in ('acodec', 'vcodec') codec = f.get(field, 'unknown') - if codec != 'none': + if not codec: + return 'unknown' + elif codec != 'none': return '.'.join(codec.split('.')[:4]) if field == 'vcodec' and f.get('acodec') == 'none': diff --git a/yt_dlp/downloader/common.py b/yt_dlp/downloader/common.py index 3a0a014ef..f502253bf 100644 --- a/yt_dlp/downloader/common.py +++ b/yt_dlp/downloader/common.py @@ -450,8 +450,7 @@ class FileDownloader: raise NotImplementedError('This method must be implemented by subclasses') def _hook_progress(self, status, info_dict): - if not self._progress_hooks: - return + # Ideally we want to make a copy of the dict, but that is too slow status['info_dict'] = info_dict # youtube-dl passes the same status object to all the hooks. # Some third party scripts seems to be relying on this. |