mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-04 09:17:21 -05:00
added b'' to my regex expression in order to solve the error on python 3
This commit is contained in:
parent
5abeaf0650
commit
f64e7695a1
@ -14,7 +14,7 @@ class WimpIE(InfoExtractor):
|
||||
thumbnail_url = self._search_regex('\<meta property\=\"og\:image" content\=\"(.+?)\" />',webpage,'video thumbnail')
|
||||
googleString = self._search_regex("googleCode = '(.*?)'", webpage,'file url')
|
||||
googleString = base64.b64decode(googleString)
|
||||
final_url = self._search_regex('","(.*?)"', googleString,'final video url')
|
||||
final_url = self._search_regex(b'","(.*?)"', googleString,'final video url')
|
||||
ext = final_url.split('.')[-1]
|
||||
return [{
|
||||
'id': video_id,
|
||||
|
Loading…
Reference in New Issue
Block a user