diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-08-05 09:06:11 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-08-05 09:06:11 +0000 |
commit | fd5a06560caab95c71a2e2e805efa8d0f3a696a0 (patch) | |
tree | e1c600b8612bc4b301e2f51b875fcd835c5008cc /yt_dlp/extractor/streamable.py | |
parent | Releasing progress-linux version 2024.05.27-1~progress7.99u1. (diff) | |
download | yt-dlp-fd5a06560caab95c71a2e2e805efa8d0f3a696a0.tar.xz yt-dlp-fd5a06560caab95c71a2e2e805efa8d0f3a696a0.zip |
Merging upstream version 2024.07.01.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | yt_dlp/extractor/streamable.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/yt_dlp/extractor/streamable.py b/yt_dlp/extractor/streamable.py index c303ac5..62ae0ee 100644 --- a/yt_dlp/extractor/streamable.py +++ b/yt_dlp/extractor/streamable.py @@ -25,7 +25,7 @@ class StreamableIE(InfoExtractor): 'upload_date': '20160208', 'duration': 61.516, 'view_count': int, - } + }, }, # older video without bitrate, width/height, codecs, etc. info { @@ -40,7 +40,7 @@ class StreamableIE(InfoExtractor): 'upload_date': '20150311', 'duration': 12, 'view_count': int, - } + }, }, { 'url': 'https://streamable.com/e/dnd1', @@ -49,7 +49,7 @@ class StreamableIE(InfoExtractor): { 'url': 'https://streamable.com/s/okkqk/drxjds', 'only_matching': True, - } + }, ] def _real_extract(self, url): @@ -59,7 +59,7 @@ class StreamableIE(InfoExtractor): # to return video info like the title properly sometimes, and doesn't # include info like the video duration video = self._download_json( - 'https://ajax.streamable.com/videos/%s' % video_id, video_id) + f'https://ajax.streamable.com/videos/{video_id}', video_id) # Format IDs: # 0 The video is being uploaded @@ -99,5 +99,5 @@ class StreamableIE(InfoExtractor): 'timestamp': float_or_none(video.get('date_added')), 'duration': float_or_none(video.get('duration')), 'view_count': int_or_none(video.get('plays')), - 'formats': formats + 'formats': formats, } |