From 4ddba33f78a11e100653771d10038a7d8e90ec9f Mon Sep 17 00:00:00 2001 From: Philipp Hagemeister Date: Sun, 5 Jan 2014 05:47:47 +0100 Subject: [PATCH] [veoh] Add support for mobile URLs Fixes #2052 --- youtube_dl/extractor/veoh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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\d*)' + _VALID_URL = r'http://(?:www\.)?veoh\.com/(?:watch|iphone/#_Watch)/v(?P\d*)' _TEST = { u'url': u'http://www.veoh.com/watch/v56314296nk7Zdmz3', -- 2.30.2