mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[bbccouk] Treat bitrate as audio+video bitrate in media selector
This commit is contained in:
parent
964744af95
commit
6240925b40
1 changed files with 1 additions and 1 deletions
|
@ -361,7 +361,7 @@ def _process_media_selector(self, media_selection, programme_id):
|
||||||
fmt.update({
|
fmt.update({
|
||||||
'width': width,
|
'width': width,
|
||||||
'height': height,
|
'height': height,
|
||||||
'vbr': bitrate,
|
'tbr': bitrate,
|
||||||
'vcodec': encoding,
|
'vcodec': encoding,
|
||||||
})
|
})
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in a new issue