about summary refs log tree commit diff
path: root/youtube_dl/extractor/orf.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-07-26 23:14:04 +0700
committerSergey M․ <dstftw@gmail.com>2016-07-26 23:14:04 +0700
commit3e050d51d4752e89269c5ae82cf4f0f49ad424b8 (patch)
treee91eee42f9bfb17d0eca0a2ceccc5d7f675b75f4 /youtube_dl/extractor/orf.py
parentced70c86400d09b0a03ecc0500e2874efc50b354 (diff)
downloadyoutube-dl-3e050d51d4752e89269c5ae82cf4f0f49ad424b8.tar.gz
youtube-dl-3e050d51d4752e89269c5ae82cf4f0f49ad424b8.tar.xz
youtube-dl-3e050d51d4752e89269c5ae82cf4f0f49ad424b8.zip
[orf:oe1] Relax _VALID_URL
Diffstat (limited to 'youtube_dl/extractor/orf.py')
-rw-r--r--youtube_dl/extractor/orf.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/youtube_dl/extractor/orf.py b/youtube_dl/extractor/orf.py
index ccb23e069..6ae30679a 100644
--- a/youtube_dl/extractor/orf.py
+++ b/youtube_dl/extractor/orf.py
@@ -137,13 +137,16 @@ class ORFTVthekIE(InfoExtractor):
 class ORFOE1IE(InfoExtractor):
     IE_NAME = 'orf:oe1'
     IE_DESC = 'Radio Österreich 1'
-    _VALID_URL = r'https?://oe1\.orf\.at/(?:programm/|konsole.*?#\?track_id=)(?P<id>[0-9]+)'
+    _VALID_URL = r'https?://oe1\.orf\.at/(?:programm/|konsole\?.*?\btrack_id=)(?P<id>[0-9]+)'
 
     # Audios on ORF radio are only available for 7 days, so we can't add tests.
-    _TEST = {
+    _TESTS = [{
         'url': 'http://oe1.orf.at/konsole?show=on_demand#?track_id=394211',
         'only_matching': True,
-    }
+    }, {
+        'url': 'http://oe1.orf.at/konsole?show=ondemand&track_id=443608&load_day=/programm/konsole/tag/20160726',
+        'only_matching': True,
+    }]
 
     def _real_extract(self, url):
         show_id = self._match_id(url)