aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2012-02-26 14:25:12 -0800
committerPhilipp Hagemeister <phihag@phihag.de>2012-02-26 14:25:12 -0800
commit895ec266bbcd40ecbc755e4efd130be380809d8a (patch)
tree44374242694da2b127e6004fee124f75e5cfdc3c
parent99d46e8c276c6705b2b0fee9cf4660e56ae825be (diff)
parentd85448f3bb5ddc35237cbfc8378c94928b682afa (diff)
downloadyoutube-dl-895ec266bbcd40ecbc755e4efd130be380809d8a.tar.xz
Merge pull request #292 from rbrito/fixes/vimeo-ie
VimeoIE: Allow matches taken from embedded videos.
-rwxr-xr-xyoutube-dl2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube-dl b/youtube-dl
index be599a2b2..63022748e 100755
--- a/youtube-dl
+++ b/youtube-dl
@@ -2014,7 +2014,7 @@ class VimeoIE(InfoExtractor):
"""Information extractor for vimeo.com."""
# _VALID_URL matches Vimeo URLs
- _VALID_URL = r'(?:https?://)?(?:(?:www|player).)?vimeo\.com/(?:groups/[^/]+/)?(?:videos?/)?([0-9]+)'
+ _VALID_URL = r'(?:https?://)?(?:(?:www|player).)?vimeo\.com/(?:groups/[^/]+/)?(?:videos?/)?(?:moogaloop.swf\?clip_id=)?([0-9]+)'
IE_NAME = u'vimeo'
def __init__(self, downloader=None):