logo

youtube-dl

[mirror] Download/Watch videos from video hostersgit clone https://hacktivis.me/git/mirror/youtube-dl.git
commit: 56f1c5ad38686c0437924eb51c4b54a5c0c876dc
parent 3a6b8f4edfddfd5221c28a4f9a6dc2a54c5be202
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sat, 12 Dec 2020 05:05:52 +0700

[ruutu] Extend _VALID_URL (closes #24839)

Diffstat:

Myoutube_dl/extractor/ruutu.py13++++++++++---
1 file changed, 10 insertions(+), 3 deletions(-)

diff --git a/youtube_dl/extractor/ruutu.py b/youtube_dl/extractor/ruutu.py @@ -13,7 +13,7 @@ from ..utils import ( 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 = [ { 'url': 'http://www.ruutu.fi/video/2058907', @@ -71,8 +71,15 @@ class RuutuIE(InfoExtractor): 'thumbnail': r're:^https?://.*\.jpg$', '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):