diff options
author | sam <mail@samueljenks.me> | 2022-10-04 02:52:30 +1300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-03 19:22:30 +0530 |
commit | 177662e0f24bfd54e57b87698739d7a518321bac (patch) | |
tree | e76fdc186a9f43b11a3c53626c84258eca411f1a /yt_dlp/YoutubeDL.py | |
parent | f48ab881f6a75fbc61f7d9c132180f7696db95f8 (diff) | |
download | hypervideo-pre-177662e0f24bfd54e57b87698739d7a518321bac.tar.lz hypervideo-pre-177662e0f24bfd54e57b87698739d7a518321bac.tar.xz hypervideo-pre-177662e0f24bfd54e57b87698739d7a518321bac.zip |
[extractor/MicrosoftEmbed] Add extractor (#5082)
Closes #2638
Authored by: DoubleCouponDay
Diffstat (limited to 'yt_dlp/YoutubeDL.py')
-rw-r--r-- | yt_dlp/YoutubeDL.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/YoutubeDL.py b/yt_dlp/YoutubeDL.py index 4fcf1f5cc..bc6de4926 100644 --- a/yt_dlp/YoutubeDL.py +++ b/yt_dlp/YoutubeDL.py @@ -3640,7 +3640,7 @@ class YoutubeDL: return None return render_table( self._list_format_headers('ID', 'Width', 'Height', 'URL'), - [[t.get('id'), t.get('width', 'unknown'), t.get('height', 'unknown'), t['url']] for t in thumbnails]) + [[t.get('id'), t.get('width') or 'unknown', t.get('height') or 'unknown', t['url']] for t in thumbnails]) def render_subtitles_table(self, video_id, subtitles): def _row(lang, formats): |