mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-07 01:47:26 +00:00
[ruutu] Extend _VALID_URL (closes #24839)
This commit is contained in:
parent
3a6b8f4edf
commit
56f1c5ad38
@ -13,7 +13,7 @@ from ..utils import (
|
|||||||
|
|
||||||
|
|
||||||
class RuutuIE(InfoExtractor):
|
class RuutuIE(InfoExtractor):
|
||||||
_VALID_URL = r'https?://(?:www\.)?(?:ruutu|supla)\.fi/(?:video|supla)/(?P<id>\d+)'
|
_VALID_URL = r'https?://(?:www\.)?(?:ruutu|supla)\.fi/(?:video|supla|audio)/(?P<id>\d+)'
|
||||||
_TESTS = [
|
_TESTS = [
|
||||||
{
|
{
|
||||||
'url': 'http://www.ruutu.fi/video/2058907',
|
'url': 'http://www.ruutu.fi/video/2058907',
|
||||||
@ -71,8 +71,15 @@ class RuutuIE(InfoExtractor):
|
|||||||
'thumbnail': r're:^https?://.*\.jpg$',
|
'thumbnail': r're:^https?://.*\.jpg$',
|
||||||
'age_limit': 0,
|
'age_limit': 0,
|
||||||
},
|
},
|
||||||
'expected_warnings': ['HTTP Error 502: Bad Gateway'],
|
'expected_warnings': [
|
||||||
}
|
'HTTP Error 502: Bad Gateway',
|
||||||
|
'Failed to download m3u8 information',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'url': 'http://www.supla.fi/audio/2231370',
|
||||||
|
'only_matching': True,
|
||||||
|
},
|
||||||
]
|
]
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
|
Loading…
Reference in New Issue
Block a user