1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-06-28 14:49:35 +00:00

[hypestat] Match URLs with www. and https://

This commit is contained in:
Philipp Hagemeister 2014-09-18 18:56:02 +02:00
parent 0529eef5a4
commit 37bfe8ace4

View file

@ -13,7 +13,7 @@ from ..utils import (
class HypestatIE(InfoExtractor): class HypestatIE(InfoExtractor):
IE_DESC = 'allmyvideos.net and vidspot.net' IE_DESC = 'allmyvideos.net and vidspot.net'
_VALID_URL = r'https?://(?:allmyvideos|vidspot)\.net/(?P<id>[a-zA-Z0-9_-]+)' _VALID_URL = r'https?://(?:www\.)?(?:allmyvideos|vidspot)\.net/(?P<id>[a-zA-Z0-9_-]+)'
_TESTS = [{ _TESTS = [{
'url': 'http://allmyvideos.net/jih3nce3x6wn', 'url': 'http://allmyvideos.net/jih3nce3x6wn',
@ -31,6 +31,9 @@ class HypestatIE(InfoExtractor):
'ext': 'mp4', 'ext': 'mp4',
'title': 'youtube-dl test video', 'title': 'youtube-dl test video',
}, },
}, {
'url': 'https://www.vidspot.net/l2ngsmhs8ci5',
'only_matching': True,
}] }]
def _real_extract(self, url): def _real_extract(self, url):