mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-10-04 12:04:49 +00:00
[extractor/MicrosoftEmbed] Add extractor (#5082)
Closes #2638 Authored by: DoubleCouponDay
This commit is contained in:
@@ -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):
|
||||
|
Reference in New Issue
Block a user