mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-08 19:08:40 +00:00
[rutv] fix vbr for empty string value (#30623)
* [rutv] use str_to_int() (thx dirkf)
This commit is contained in:
parent
bf23bc0489
commit
3472227074
|
@ -6,7 +6,8 @@ import re
|
|||
from .common import InfoExtractor
|
||||
from ..utils import (
|
||||
ExtractorError,
|
||||
int_or_none
|
||||
int_or_none,
|
||||
str_to_int
|
||||
)
|
||||
|
||||
|
||||
|
@ -179,7 +180,7 @@ class RUTVIE(InfoExtractor):
|
|||
'player_url': 'http://player.rutv.ru/flash3v/osmf.swf?i=22',
|
||||
'rtmp_live': True,
|
||||
'ext': 'flv',
|
||||
'vbr': int(quality),
|
||||
'vbr': str_to_int(quality),
|
||||
'preference': preference,
|
||||
}
|
||||
elif transport == 'm3u8':
|
||||
|
|
Loading…
Reference in a new issue