mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-01-07 17:16:08 +00: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 a new issue