aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2015-01-23 17:09:26 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2015-01-23 17:09:26 +0100
commite793f7671c3e303e4fbe2c4cd18e80ad4b5e5417 (patch)
treef77aaf3625313444dbb5cfa58eb583455fb8e16f
parent6f58db89820fe03effb2014ee70e1ffd0b1f3017 (diff)
downloadyoutube-dl-e793f7671c3e303e4fbe2c4cd18e80ad4b5e5417.tar.xz
[liveleak] Modernize
-rw-r--r--youtube_dl/extractor/liveleak.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/youtube_dl/extractor/liveleak.py b/youtube_dl/extractor/liveleak.py
index b04be1e8c..e56a4d6b1 100644
--- a/youtube_dl/extractor/liveleak.py
+++ b/youtube_dl/extractor/liveleak.py
@@ -8,7 +8,7 @@ from ..utils import int_or_none
class LiveLeakIE(InfoExtractor):
- _VALID_URL = r'^(?:http://)?(?:\w+\.)?liveleak\.com/view\?(?:.*?)i=(?P<video_id>[\w_]+)(?:.*)'
+ _VALID_URL = r'https?://(?:\w+\.)?liveleak\.com/view\?(?:.*?)i=(?P<id>[\w_]+)(?:.*)'
_TESTS = [{
'url': 'http://www.liveleak.com/view?i=757_1364311680',
'md5': '0813c2430bea7a46bf13acf3406992f4',
@@ -43,8 +43,7 @@ class LiveLeakIE(InfoExtractor):
}]
def _real_extract(self, url):
- mobj = re.match(self._VALID_URL, url)
- video_id = mobj.group('video_id')
+ video_id = self._match_id(url)
webpage = self._download_webpage(url, video_id)
video_title = self._og_search_title(webpage).replace('LiveLeak.com -', '').strip()