added b'' to my regex expression in order to solve the error on python 3

This commit is contained in:
M.Yasoob Khalid 2013-06-26 18:46:05 +05:00
parent 5abeaf0650
commit f64e7695a1
1 changed files with 1 additions and 1 deletions

View File

@ -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,