about summary refs log tree commit diff
path: root/youtube_dl/extractor/karrierevideos.py
diff options
context:
space:
mode:
authorMister Hat <misterhat144@gmail.com>2015-05-17 03:35:08 -0500
committerMister Hat <misterhat144@gmail.com>2015-05-17 03:35:08 -0500
commitba9d16291b8ace3bd412bcfc0c128c047545e509 (patch)
tree1a6b8286952ed7a5a26dcd15a2a66a7472797a27 /youtube_dl/extractor/karrierevideos.py
parent725652e9247e1171110b624d748e20fa1c88260e (diff)
downloadyoutube-dl-ba9d16291b8ace3bd412bcfc0c128c047545e509.tar.gz
youtube-dl-ba9d16291b8ace3bd412bcfc0c128c047545e509.tar.xz
youtube-dl-ba9d16291b8ace3bd412bcfc0c128c047545e509.zip
manually specify namespace
Diffstat (limited to 'youtube_dl/extractor/karrierevideos.py')
-rw-r--r--youtube_dl/extractor/karrierevideos.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/youtube_dl/extractor/karrierevideos.py b/youtube_dl/extractor/karrierevideos.py
index 59d29e845..a05e8ab76 100644
--- a/youtube_dl/extractor/karrierevideos.py
+++ b/youtube_dl/extractor/karrierevideos.py
@@ -29,15 +29,13 @@ class KarriereVideosIE(InfoExtractor):
 
         playlist = self._html_search_regex(r'/config/video/(.*?)\.xml', webpage, 'playlist')
         playlist = self._download_xml(
-            'http://www.karrierevideos.at/player-playlist.xml.php?p=%s' % playlist,
+            'http://www.karrierevideos.at/player-playlist.xml.php?p=' + playlist,
             video_id)
 
-        namespace = {
-            'jwplayer': 'http://developer.longtailvideo.com/trac/wiki/FlashFormats'
-        }
+        namespace = 'http://developer.longtailvideo.com/trac/wiki/FlashFormats'
 
         item = playlist.find('tracklist/item')
-        streamer = item.find('jwplayer:streamer', namespace).text
+        streamer = item.find('{%s}streamer' % namespace).text
 
         return {
             'id': video_id,
@@ -46,7 +44,7 @@ class KarriereVideosIE(InfoExtractor):
             'thumbnail': 'http://www.karrierevideos.at' + self._html_search_meta('thumbnail', webpage),
             'protocol': 'rtmp',
             'url': streamer.replace('rtmpt', 'http'),
-            'play_path': 'mp4:' + item.find('jwplayer:file', namespace).text,
+            'play_path': 'mp4:' + item.find('{%s}file' % namespace).text,
             'tc_url': streamer,
             'ext': 'mp4'
         }