[orf] re-introduce separate classes for ORF radios...
...to preserve ie_keys.
This commit is contained in:
parent
c5712ccde0
commit
3126ad38d7
@ -680,7 +680,8 @@ from .openload import OpenloadIE
|
|||||||
from .ora import OraTVIE
|
from .ora import OraTVIE
|
||||||
from .orf import (
|
from .orf import (
|
||||||
ORFTVthekIE,
|
ORFTVthekIE,
|
||||||
ORFRadioIE,
|
ORFFM4IE,
|
||||||
|
ORFOE1IE,
|
||||||
ORFIPTVIE,
|
ORFIPTVIE,
|
||||||
)
|
)
|
||||||
from .pandatv import PandaTVIE
|
from .pandatv import PandaTVIE
|
||||||
|
@ -143,9 +143,6 @@ class ORFTVthekIE(InfoExtractor):
|
|||||||
|
|
||||||
|
|
||||||
class ORFRadioIE(InfoExtractor):
|
class ORFRadioIE(InfoExtractor):
|
||||||
IE_NAME = 'orf:radio'
|
|
||||||
IE_DESC = 'ORF Radio'
|
|
||||||
|
|
||||||
_VALID_URL = r'https?://(?P<station>oe1|fm4)\.orf\.at/(?:7tage/?#|player/)(?P<date>[0-9]+)/(?P<show>\w+)'
|
_VALID_URL = r'https?://(?P<station>oe1|fm4)\.orf\.at/(?:7tage/?#|player/)(?P<date>[0-9]+)/(?P<show>\w+)'
|
||||||
|
|
||||||
_TESTS = [
|
_TESTS = [
|
||||||
@ -214,6 +211,16 @@ class ORFRadioIE(InfoExtractor):
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
class ORFFM4IE(ORFRadioIE):
|
||||||
|
IE_NAME = 'orf:fm4'
|
||||||
|
IE_DESC = 'radio FM4'
|
||||||
|
|
||||||
|
|
||||||
|
class ORFOE1IE(ORFRadioIE):
|
||||||
|
IE_NAME = 'orf:oe1'
|
||||||
|
IE_DESC = 'Radio Österreich 1'
|
||||||
|
|
||||||
|
|
||||||
class ORFIPTVIE(InfoExtractor):
|
class ORFIPTVIE(InfoExtractor):
|
||||||
IE_NAME = 'orf:iptv'
|
IE_NAME = 'orf:iptv'
|
||||||
IE_DESC = 'iptv.ORF.at'
|
IE_DESC = 'iptv.ORF.at'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user