[vessel] Improve video id extraction
authordundua <dundua@users.noreply.github.com>
Sun, 30 Oct 2016 11:14:51 +0000 (04:14 -0700)
committerSergey M <dstftw@gmail.com>
Sun, 30 Oct 2016 11:14:51 +0000 (18:14 +0700)
youtube_dl/extractor/vessel.py

index 2cd617b91ce4a4a7eba0a639c0956dca3e168576..5b7647f8a29c8690e6c0068ffff897805e71e51d 100644 (file)
@@ -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