Browse Source

[vessel] Improve video id extraction

totalwebcasting
dundua 8 years ago
committed by Sergey M
parent
commit
cae6bc0118
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      youtube_dl/extractor/vessel.py

+ 2
- 2
youtube_dl/extractor/vessel.py View 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


Loading…
Cancel
Save