diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-01-05 05:47:47 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-01-05 05:47:50 +0100 |
commit | 4ddba33f78a11e100653771d10038a7d8e90ec9f (patch) | |
tree | 35e145e24991a96809b5e0747bfdd31466b87e15 /youtube_dl/extractor/veoh.py | |
parent | e3b7aa8428ba96cd21cfa9824ce8c06df55bfc08 (diff) |
[veoh] Add support for mobile URLs
Fixes #2052
Diffstat (limited to 'youtube_dl/extractor/veoh.py')
-rw-r--r-- | youtube_dl/extractor/veoh.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/veoh.py b/youtube_dl/extractor/veoh.py index 00672c9e5..9534f2725 100644 --- a/youtube_dl/extractor/veoh.py +++ b/youtube_dl/extractor/veoh.py @@ -7,7 +7,7 @@ from ..utils import ( ) class VeohIE(InfoExtractor): - _VALID_URL = r'http://www\.veoh\.com/watch/v(?P<id>\d*)' + _VALID_URL = r'http://(?:www\.)?veoh\.com/(?:watch|iphone/#_Watch)/v(?P<id>\d*)' _TEST = { u'url': u'http://www.veoh.com/watch/v56314296nk7Zdmz3', |