[ard] Add rss support
authorOle Ernst <olebowle@gmx.com>
Fri, 10 Oct 2014 18:35:34 +0000 (20:35 +0200)
committerOle Ernst <olebowle@gmx.com>
Fri, 10 Oct 2014 18:35:34 +0000 (20:35 +0200)
youtube_dl/extractor/ard.py

index 8de9c11eaedcd078b70d2c5bb74f9b40fdb9c46c..cd9c1d9be9de1e4257c52aadbf8bb4004b3c03fb 100644 (file)
@@ -4,6 +4,7 @@ from __future__ import unicode_literals
 import re
 
 from .common import InfoExtractor
+from .generic import GenericIE
 from ..utils import (
     determine_ext,
     ExtractorError,
@@ -12,6 +13,7 @@ from ..utils import (
     parse_duration,
     unified_strdate,
     xpath_text,
+    parse_xml,
 )
 
 
@@ -54,6 +56,11 @@ class ARDMediathekIE(InfoExtractor):
         if '>Der gewünschte Beitrag ist nicht mehr verfügbar.<' in webpage:
             raise ExtractorError('Video %s is no longer available' % video_id, expected=True)
 
+        if re.search(r'rss=true', url):
+            doc = parse_xml(webpage)
+            if doc.tag == 'rss':
+                return GenericIE()._extract_rss(url, video_id, doc)
+
         title = self._html_search_regex(
             [r'<h1(?:\s+class="boxTopHeadline")?>(.*?)</h1>',
              r'<meta name="dcterms.title" content="(.*?)"/>',