Skip to content

Commit

Permalink
[Common:JWPlayer] Fix x1000 scaling error
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkf authored Oct 11, 2022
1 parent c94a459 commit 11b284c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion youtube_dl/extractor/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -2844,7 +2844,7 @@ def _parse_jwplayer_formats(self, jwplayer_sources_data, video_id=None,
'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'):
Expand Down

0 comments on commit 11b284c

Please sign in to comment.