summary refs log tree commit diff
diff options
context:
space:
mode:
authorRicardo Garcia <sarbalap+freshmeat@gmail.com>2011-02-28 19:37:58 +0100
committerRicardo Garcia <sarbalap+freshmeat@gmail.com>2011-02-28 19:37:58 +0100
commitda54ed441267ff3a734e73871099cc1bb0b08543 (patch)
tree2b63d5e28b7156226e208b27b412032bf11f6baf
parentb58faab5e7e10c1b3f52342277098d97365825de (diff)
downloadyoutube-dl-da54ed441267ff3a734e73871099cc1bb0b08543.tar.gz
youtube-dl-da54ed441267ff3a734e73871099cc1bb0b08543.tar.xz
youtube-dl-da54ed441267ff3a734e73871099cc1bb0b08543.zip
Support youtube.com/e/ URLs (closes #88)
-rwxr-xr-xyoutube-dl2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube-dl b/youtube-dl
index 9a08932b0..d8485952b 100755
--- a/youtube-dl
+++ b/youtube-dl
@@ -858,7 +858,7 @@ class InfoExtractor(object):
 class YoutubeIE(InfoExtractor):
 	"""Information extractor for youtube.com."""
 
-	_VALID_URL = r'^((?:https?://)?(?:youtu\.be/|(?:\w+\.)?youtube(?:-nocookie)?\.com/)(?:(?:(?:v|embed)/)|(?:(?:watch(?:_popup)?(?:\.php)?)?(?:\?|#!?)(?:.+&)?v=)))?([0-9A-Za-z_-]+)(?(1).+)?$'
+	_VALID_URL = r'^((?:https?://)?(?:youtu\.be/|(?:\w+\.)?youtube(?:-nocookie)?\.com/)(?:(?:(?:v|embed|e)/)|(?:(?:watch(?:_popup)?(?:\.php)?)?(?:\?|#!?)(?:.+&)?v=)))?([0-9A-Za-z_-]+)(?(1).+)?$'
 	_LANG_URL = r'http://www.youtube.com/?hl=en&persist_hl=1&gl=US&persist_gl=1&opt_out_ackd=1'
 	_LOGIN_URL = 'https://www.youtube.com/signup?next=/&gl=US&hl=en'
 	_AGE_URL = 'http://www.youtube.com/verify_age?next_url=/&gl=US&hl=en'