mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +00:00 
			
		
		
		
	Switch codebase to use compat_b64decode
This commit is contained in:
		| @@ -1,11 +1,13 @@ | ||||
| # coding: utf-8 | ||||
| from __future__ import unicode_literals | ||||
|  | ||||
| import base64 | ||||
| import re | ||||
|  | ||||
| from .common import InfoExtractor | ||||
| from ..compat import compat_urllib_parse_unquote | ||||
| from ..compat import ( | ||||
|     compat_b64decode, | ||||
|     compat_urllib_parse_unquote, | ||||
| ) | ||||
|  | ||||
|  | ||||
| class BigflixIE(InfoExtractor): | ||||
| @@ -39,8 +41,8 @@ class BigflixIE(InfoExtractor): | ||||
|             webpage, 'title') | ||||
|  | ||||
|         def decode_url(quoted_b64_url): | ||||
|             return base64.b64decode(compat_urllib_parse_unquote( | ||||
|                 quoted_b64_url).encode('ascii')).decode('utf-8') | ||||
|             return compat_b64decode(compat_urllib_parse_unquote( | ||||
|                 quoted_b64_url)).decode('utf-8') | ||||
|  | ||||
|         formats = [] | ||||
|         for height, encoded_url in re.findall( | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Sergey M․
					Sergey M․