projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5abeaf0
)
added b'' to my regex expression in order to solve the error on python 3
author
M.Yasoob Khalid
<yasoob.khld@gmail.com>
Wed, 26 Jun 2013 13:46:05 +0000
(18:46 +0500)
committer
M.Yasoob Khalid
<yasoob.khld@gmail.com>
Wed, 26 Jun 2013 13:46:05 +0000
(18:46 +0500)
youtube_dl/extractor/wimp.py
patch
|
blob
|
history
diff --git
a/youtube_dl/extractor/wimp.py
b/youtube_dl/extractor/wimp.py
index 811b37cc1bb01c89ae582d91eced2d9a40bcaef3..9ff5112a6bf94a3feaba708f67638110c6e55a75 100644
(file)
--- a/
youtube_dl/extractor/wimp.py
+++ b/
youtube_dl/extractor/wimp.py
@@
-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,