1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-17 02:29:32 +00:00

[Common:JWPlayer] Fix x1000 scaling error

See https://github.com/yt-dlp/yt-dlp/issues/5106#issuecomment-1264625161
This commit is contained in:
dirkf 2022-10-11 12:36:44 +00:00 committed by GitHub
parent c94a459a24
commit 11b284c81f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2844,7 +2844,7 @@ class InfoExtractor(object):
'url': source_url,
'width': int_or_none(source.get('width')),
'height': height,
'tbr': int_or_none(source.get('bitrate')),
'tbr': int_or_none(source.get('bitrate'), scale=1000),
'ext': ext,
}
if source_url.startswith('rtmp'):