1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-03-07 14:17:20 +08:00

orf: fix typos and add tests

This commit is contained in:
hh0rva1h 2020-04-23 22:13:19 +02:00
parent 8294dc20af
commit e385631b0f

View File

@ -232,6 +232,10 @@ class ORFNOEIE(ORFRadioIE):
api_station = "noe"
loop_station = "oe2n"
_TEST = {
'url': 'https://noe.orf.at/player/20200423/NGM',
'only_matching': True,
}
class ORFWIEIE(ORFRadioIE):
IE_NAME = 'orf:wien'
@ -240,6 +244,11 @@ class ORFWIEIE(ORFRadioIE):
api_station = "wie"
loop_station = "oe2w"
_TEST = {
'url': 'https://wien.orf.at/player/20200423/WGUM',
'only_matching': True,
}
class ORFBGLIE(ORFRadioIE):
IE_NAME = 'orf:burgenland'
@ -248,6 +257,11 @@ class ORFBGLIE(ORFRadioIE):
api_station = "bgl"
loop_station = "oe2b"
_TEST = {
'url': 'https://burgenland.orf.at/player/20200423/BGM',
'only_matching': True,
}
class ORFOOEIE(ORFRadioIE):
IE_NAME = 'orf:oberoesterreich'
@ -256,6 +270,11 @@ class ORFOOEIE(ORFRadioIE):
api_station = "ooe"
loop_station = "oe2o"
_TEST = {
'url': 'https://ooe.orf.at/player/20200423/OGMO',
'only_matching': True,
}
class ORFSTMIE(ORFRadioIE):
IE_NAME = 'orf:steiermark'
@ -264,6 +283,11 @@ class ORFSTMIE(ORFRadioIE):
api_station = "stm"
loop_station = "oe2st"
_TEST = {
'url': 'https://steiermark.orf.at/player/20200423/STGMS',
'only_matching': True,
}
class ORFKTNIE(ORFRadioIE):
IE_NAME = 'orf:kaernten'
@ -272,6 +296,11 @@ class ORFKTNIE(ORFRadioIE):
api_station = "ktn"
loop_station = "oe2k"
_TEST = {
'url': 'https://kaernten.orf.at/player/20200423/KGUMO',
'only_matching': True,
}
class ORFSBGIE(ORFRadioIE):
IE_NAME = 'orf:salzburg'
@ -280,14 +309,24 @@ class ORFSBGIE(ORFRadioIE):
api_station = "sbg"
loop_station = "oe2s"
_TEST = {
'url': 'https://salzburg.orf.at/player/20200423/SGUM',
'only_matching': True,
}
class ORFTIRIE(ORFRadioIE):
IE_NAME = 'orf:salzburg'
IE_DESC = 'Radio Salzburg'
IE_NAME = 'orf:tirol'
IE_DESC = 'Radio Tirol'
_VALID_URL = r'https?://(?P<station>salzburg)\.orf\.at/player/(?P<date>[0-9]+)/(?P<show>\w+)'
api_station = "tir"
loop_station = "oe2t"
_TEST = {
'url': 'https://tirol.orf.at/player/20200423/TGUMO',
'only_matching': True,
}
class ORFVBGIE(ORFRadioIE):
IE_NAME = 'orf:vorarlberg'
@ -296,6 +335,11 @@ class ORFVBGIE(ORFRadioIE):
api_station = "vbg"
loop_station = "oe2v"
_TEST = {
'url': 'https://vorarlberg.orf.at/player/20200423/VGUM',
'only_matching': True,
}
class ORFOE1IE(ORFRadioIE):
IE_NAME = 'orf:oe1'