aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey M. <dstftw@gmail.com>2015-10-03 22:36:49 +0600
committerSergey M. <dstftw@gmail.com>2015-10-03 22:36:49 +0600
commit85557f635ab7eac2e76e3a65be5a4446ddf18530 (patch)
tree68a9c1ca3768f091029acdb748fc2e636066b546
parent60d23e5e592aebe4a77dfb4ab70e87337967721c (diff)
parent97d5bfcba65c8575ab06a34e91fae30a5fda3161 (diff)
downloadyoutube-dl-85557f635ab7eac2e76e3a65be5a4446ddf18530.tar.xz
Merge pull request #7052 from remitamine/engadget
[engadget] accept short video urls
-rw-r--r--youtube_dl/extractor/engadget.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/engadget.py b/youtube_dl/extractor/engadget.py
index 4ea37ebd9..e4180701d 100644
--- a/youtube_dl/extractor/engadget.py
+++ b/youtube_dl/extractor/engadget.py
@@ -10,7 +10,7 @@ from ..utils import (
class EngadgetIE(InfoExtractor):
_VALID_URL = r'''(?x)https?://www.engadget.com/
- (?:video/5min/(?P<id>\d+)|
+ (?:video(?:/5min)?/(?P<id>\d+)|
[\d/]+/.*?)
'''