[srmediathek] extend _VALID_URL(closes #9373)
This commit is contained in:
parent
31eeab9f41
commit
8cc9b4016d
1 changed files with 4 additions and 2 deletions
|
@ -11,7 +11,7 @@ from ..utils import (
|
||||||
class SRMediathekIE(ARDMediathekIE):
|
class SRMediathekIE(ARDMediathekIE):
|
||||||
IE_NAME = 'sr:mediathek'
|
IE_NAME = 'sr:mediathek'
|
||||||
IE_DESC = 'Saarländischer Rundfunk'
|
IE_DESC = 'Saarländischer Rundfunk'
|
||||||
_VALID_URL = r'https?://sr-mediathek\.sr-online\.de/index\.php\?.*?&id=(?P<id>[0-9]+)'
|
_VALID_URL = r'https?://sr-mediathek(?:\.sr-online)?\.de/index\.php\?.*?&id=(?P<id>[0-9]+)'
|
||||||
|
|
||||||
_TESTS = [{
|
_TESTS = [{
|
||||||
'url': 'http://sr-mediathek.sr-online.de/index.php?seite=7&id=28455',
|
'url': 'http://sr-mediathek.sr-online.de/index.php?seite=7&id=28455',
|
||||||
|
@ -35,7 +35,9 @@ class SRMediathekIE(ARDMediathekIE):
|
||||||
# m3u8 download
|
# m3u8 download
|
||||||
'skip_download': True,
|
'skip_download': True,
|
||||||
},
|
},
|
||||||
'expected_warnings': ['Unable to download f4m manifest']
|
}, {
|
||||||
|
'url': 'http://sr-mediathek.de/index.php?seite=7&id=7480',
|
||||||
|
'only_matching': True,
|
||||||
}]
|
}]
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
|
|
Loading…
Reference in a new issue