[azmedien:show] Improve _VALID_URL
This commit is contained in:
parent
30dda24de3
commit
a089545e03
1 changed files with 14 additions and 1 deletions
|
@ -85,7 +85,20 @@ class AZMedienIE(AZMedienBaseIE):
|
||||||
|
|
||||||
class AZMedienShowIE(AZMedienBaseIE):
|
class AZMedienShowIE(AZMedienBaseIE):
|
||||||
IE_DESC = 'AZ Medien shows'
|
IE_DESC = 'AZ Medien shows'
|
||||||
_VALID_URL = r'https?://(?:www\.)?(?:telezueri\.ch|telebaern\.tv|telem1\.ch)/(?P<id>[0-9]+-show-[^/#]+(?:/[0-9]+-episode-[^/#]+)?)$'
|
_VALID_URL = r'''(?x)
|
||||||
|
https?://
|
||||||
|
(?:www\.)?
|
||||||
|
(?:
|
||||||
|
telezueri\.ch|
|
||||||
|
telebaern\.tv|
|
||||||
|
telem1\.ch
|
||||||
|
)/
|
||||||
|
(?P<id>[0-9]+-show-[^/\#]+
|
||||||
|
(?:
|
||||||
|
/[0-9]+-episode-[^/\#]+
|
||||||
|
)?
|
||||||
|
)$
|
||||||
|
'''
|
||||||
|
|
||||||
_TESTS = [{
|
_TESTS = [{
|
||||||
# URL with 'episode'
|
# URL with 'episode'
|
||||||
|
|
Loading…
Reference in a new issue