logo

youtube-dl

[mirror] Download/Watch videos from video hostersgit clone https://hacktivis.me/git/mirror/youtube-dl.git
commit: 34722270741fb9c06f978861c1e5f503291070d8
parent bf23bc0489cf304b2a8ab756f2f63b2cfa5586fe
Author: Vladimir Stavrinov <9163352+vstavrinov@users.noreply.github.com>
Date:   Mon, 14 Feb 2022 20:54:31 +0300

[rutv] fix vbr for empty string value (#30623)

* [rutv] use str_to_int() (thx dirkf)

Diffstat:

Myoutube_dl/extractor/rutv.py5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/youtube_dl/extractor/rutv.py b/youtube_dl/extractor/rutv.py @@ -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':