1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-03-07 09:57:16 +08:00

orf: Add Ö3 radio station

This commit is contained in:
hh0rva1h 2020-04-24 10:21:49 +02:00
parent 9b02ce0e86
commit 6a3f8e5ee0
2 changed files with 14 additions and 0 deletions

View File

@ -804,6 +804,7 @@ from .orf import (
ORFFM4IE,
ORFFM4StoryIE,
ORFOE1IE,
ORFOE3IE,
ORFNOEIE,
ORFWIEIE,
ORFBGLIE,

View File

@ -341,6 +341,19 @@ class ORFVBGIE(ORFRadioIE):
}
class ORFOE3IE(ORFRadioIE):
IE_NAME = 'orf:oe3'
IE_DESC = 'Radio Österreich 3'
_VALID_URL = r'https?://(?P<station>oe3)\.orf\.at/player/(?P<date>[0-9]+)/(?P<show>\w+)'
api_station = "oe3"
loop_station = "oe3"
_TEST = {
'url': 'https://oe3.orf.at/player/20200424/3WEK',
'only_matching': True,
}
class ORFOE1IE(ORFRadioIE):
IE_NAME = 'orf:oe1'
IE_DESC = 'Radio Österreich 1'