projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
03df7ba
)
[wimp] Update video URL regex
author
Sergey M․
<dstftw@gmail.com>
Tue, 28 Oct 2014 13:35:02 +0000
(20:35 +0700)
committer
Sergey M․
<dstftw@gmail.com>
Tue, 28 Oct 2014 13:35:02 +0000
(20:35 +0700)
youtube_dl/extractor/wimp.py
patch
|
blob
|
history
diff --git
a/youtube_dl/extractor/wimp.py
b/youtube_dl/extractor/wimp.py
index c27dda9440e62274e13b9359f24c2a909516b4bc..3377a543ee7a93d59cd139389bb1c4c35b687277 100644
(file)
--- a/
youtube_dl/extractor/wimp.py
+++ b/
youtube_dl/extractor/wimp.py
@@
-37,7
+37,7
@@
class WimpIE(InfoExtractor):
video_id = mobj.group(1)
webpage = self._download_webpage(url, video_id)
video_url = self._search_regex(
- r
's1\.addVariable\("file",\s*"([^"]+)"\);'
, webpage, 'video URL')
+ r
"'file'\s*:\s*'([^']+)'"
, webpage, 'video URL')
if YoutubeIE.suitable(video_url):
self.to_screen('Found YouTube video')
return {