mirror of
				https://github.com/ytdl-org/youtube-dl
				synced 2025-10-31 01:33:15 +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…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 Vladimir Stavrinov
						Vladimir Stavrinov