summary refs log tree commit diff
diff options
context:
space:
mode:
authordundua <dundua@users.noreply.github.com>2016-10-30 04:14:51 -0700
committerSergey M <dstftw@gmail.com>2016-10-30 18:14:51 +0700
commitcae6bc011852271734884648be254cc51500935f (patch)
tree2a698be54fb8e4f1522fb1023ec8838954beac2c
parentd9ee2e5cf684090862b60f32a9b0b4c06a59ac91 (diff)
downloadyoutube-dl-cae6bc011852271734884648be254cc51500935f.tar.gz
youtube-dl-cae6bc011852271734884648be254cc51500935f.tar.xz
youtube-dl-cae6bc011852271734884648be254cc51500935f.zip
[vessel] Improve video id extraction
-rw-r--r--youtube_dl/extractor/vessel.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/vessel.py b/youtube_dl/extractor/vessel.py
index 2cd617b91..5b7647f8a 100644
--- a/youtube_dl/extractor/vessel.py
+++ b/youtube_dl/extractor/vessel.py
@@ -13,7 +13,7 @@ from ..utils import (
 
 
 class VesselIE(InfoExtractor):
-    _VALID_URL = r'https?://(?:www\.)?vessel\.com/(?:videos|embed)/(?P<id>[0-9a-zA-Z]+)'
+    _VALID_URL = r'https?://(?:www\.)?vessel\.com/(?:videos|embed)/(?P<id>[0-9a-zA-Z-_]+)'
     _API_URL_TEMPLATE = 'https://www.vessel.com/api/view/items/%s'
     _LOGIN_URL = 'https://www.vessel.com/api/account/login'
     _NETRC_MACHINE = 'vessel'
@@ -37,7 +37,7 @@ class VesselIE(InfoExtractor):
     @staticmethod
     def _extract_urls(webpage):
         return [url for _, url in re.findall(
-            r'<iframe[^>]+src=(["\'])((?:https?:)?//(?:www\.)?vessel\.com/embed/[0-9a-zA-Z]+.*?)\1',
+            r'<iframe[^>]+src=(["\'])((?:https?:)?//(?:www\.)?vessel\.com/embed/[0-9a-zA-Z-_]+.*?)\1',
             webpage)]
 
     @staticmethod