diff options
author | bashonly <bashonly@bashonly.com> | 2023-09-11 09:51:39 -0500 |
---|---|---|
committer | bashonly <bashonly@bashonly.com> | 2023-09-11 09:51:39 -0500 |
commit | 66cc64ff6696f9921ff112a278542f8d999ffea4 (patch) | |
tree | 379184f9d5016543ee8b02451138e46c500760c3 | |
parent | a006ce2b27357c15792eb5c18f06765e640b801c (diff) |
[ie/zoom] Extract duration
Closes #8080
Authored by: bashonly
-rw-r--r-- | yt_dlp/extractor/zoom.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/yt_dlp/extractor/zoom.py b/yt_dlp/extractor/zoom.py index 3d7ccca76..1e41d0434 100644 --- a/yt_dlp/extractor/zoom.py +++ b/yt_dlp/extractor/zoom.py @@ -127,6 +127,7 @@ class ZoomIE(InfoExtractor): return { 'id': video_id, 'title': str_or_none(traverse_obj(data, ('meet', 'topic'))), + 'duration': int_or_none(data.get('duration')), 'subtitles': subtitles, 'formats': formats, 'http_headers': { |