aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/phoenix.py
diff options
context:
space:
mode:
authorremitamine <remitamine@gmail.com>2015-12-28 17:54:04 +0100
committerremitamine <remitamine@gmail.com>2015-12-28 17:54:04 +0100
commitbc737bd61aead4660024747d0d73018c6250874f (patch)
treea80157f2b6de9f71e0021f69f2e997b2a617a5a5 /youtube_dl/extractor/phoenix.py
parentc1f49e16843bb9bdfdf132a472eb0fc2c6b920e4 (diff)
parenta5c1d95500898541cd6b19b32963883db421c4b4 (diff)
Merge branch 'zdf'(fixes #8024)
Diffstat (limited to 'youtube_dl/extractor/phoenix.py')
-rw-r--r--youtube_dl/extractor/phoenix.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/youtube_dl/extractor/phoenix.py b/youtube_dl/extractor/phoenix.py
index 46cebc0d7..6ce2ec19d 100644
--- a/youtube_dl/extractor/phoenix.py
+++ b/youtube_dl/extractor/phoenix.py
@@ -1,10 +1,9 @@
from __future__ import unicode_literals
-from .common import InfoExtractor
-from .zdf import extract_from_xml_url
+from .zdf import ZDFIE
-class PhoenixIE(InfoExtractor):
+class PhoenixIE(ZDFIE):
_VALID_URL = r'''(?x)https?://(?:www\.)?phoenix\.de/content/
(?:
phoenix/die_sendungen/(?:[^/]+/)?
@@ -41,5 +40,5 @@ class PhoenixIE(InfoExtractor):
r'<div class="phx_vod" id="phx_vod_([0-9]+)"',
webpage, 'internal video ID')
- api_url = 'http://www.phoenix.de/php/zdfplayer-v1.3/data/beitragsDetails.php?ak=web&id=%s' % internal_id
- return extract_from_xml_url(self, video_id, api_url)
+ api_url = 'http://www.phoenix.de/php/mediaplayer/data/beitrags_details.php?ak=web&id=%s' % internal_id
+ return self.extract_from_xml_url(video_id, api_url)