diff options
author | Simon Sawicki <contact@grub4k.xyz> | 2023-02-02 06:50:42 +0100 |
---|---|---|
committer | Simon Sawicki <contact@grub4k.xyz> | 2023-02-02 07:12:36 +0100 |
commit | acacb57c7e173b93c6e0f0c43e61b9b2912719d8 (patch) | |
tree | 390b8eaa1c26e608c9f94bf2c473b27bbd7d4163 | |
parent | 776995bc109c5cd1aa56b684fada2ce718a386ec (diff) | |
download | hypervideo-pre-acacb57c7e173b93c6e0f0c43e61b9b2912719d8.tar.lz hypervideo-pre-acacb57c7e173b93c6e0f0c43e61b9b2912719d8.tar.xz hypervideo-pre-acacb57c7e173b93c6e0f0c43e61b9b2912719d8.zip |
[extractor/rumble] Fix format sorting
Closes #6119
Authored by: pukkandan
-rw-r--r-- | yt_dlp/extractor/rumble.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/rumble.py b/yt_dlp/extractor/rumble.py index b7f798ffb..97f81446c 100644 --- a/yt_dlp/extractor/rumble.py +++ b/yt_dlp/extractor/rumble.py @@ -186,7 +186,7 @@ class RumbleEmbedIE(InfoExtractor): 'filesize': 'size', 'width': 'w', 'height': 'h', - }, default={}) + }, expected_type=lambda x: int(x) or None) }) subtitles = { |