[orf:oe1] Add konsole URL schema (Fixes #4675)
authorPhilipp Hagemeister <phihag@phihag.de>
Sat, 10 Jan 2015 13:27:27 +0000 (14:27 +0100)
committerPhilipp Hagemeister <phihag@phihag.de>
Sat, 10 Jan 2015 13:27:27 +0000 (14:27 +0100)
youtube_dl/extractor/orf.py

index 3d2e5d2c9d9e6265cfa177e3bb44dbb076066fad..4e293392b3d39b46ad1612d884068a2dbfaeef23 100644 (file)
@@ -128,13 +128,16 @@ class ORFTVthekIE(InfoExtractor):
         }
 
 
-# Audios on ORF radio are only available for 7 days, so we can't add tests.
-
-
 class ORFOE1IE(InfoExtractor):
     IE_NAME = 'orf:oe1'
     IE_DESC = 'Radio Ã–sterreich 1'
-    _VALID_URL = r'http://oe1\.orf\.at/programm/(?P<id>[0-9]+)'
+    _VALID_URL = r'http://oe1\.orf\.at/(?:programm/|konsole.*?#\?track_id=)(?P<id>[0-9]+)'
+
+    # Audios on ORF radio are only available for 7 days, so we can't add tests.
+    _TEST = {
+        'url': 'http://oe1.orf.at/konsole?show=on_demand#?track_id=394211',
+        'only_matching': True,
+    }
 
     def _real_extract(self, url):
         show_id = self._match_id(url)