summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2014-08-17 02:07:04 +0700
committerSergey M․ <dstftw@gmail.com>2014-08-17 02:07:04 +0700
commitc1d293cfa68031e0ec1a4190041f280d22c2b026 (patch)
tree75ed5ec12580d81e3cbbbf5ab5dc2cd71e931571
parent49807b4ac6aab2db702afbde20215641210e0413 (diff)
downloadyoutube-dl-c1d293cfa68031e0ec1a4190041f280d22c2b026.tar.gz
youtube-dl-c1d293cfa68031e0ec1a4190041f280d22c2b026.tar.xz
youtube-dl-c1d293cfa68031e0ec1a4190041f280d22c2b026.zip
[dfb] Fix f4m manifest URL
-rw-r--r--youtube_dl/extractor/dfb.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/dfb.py b/youtube_dl/extractor/dfb.py
index cb8e06822..8049779b0 100644
--- a/youtube_dl/extractor/dfb.py
+++ b/youtube_dl/extractor/dfb.py
@@ -30,7 +30,7 @@ class DFBIE(InfoExtractor):
             video_id)
         video_info = player_info.find('video')
 
-        f4m_info = self._download_xml(video_info.find('url').text, video_id)
+        f4m_info = self._download_xml(self._proto_relative_url(video_info.find('url').text.strip()), video_id)
         token_el = f4m_info.find('token')
         manifest_url = token_el.attrib['url'] + '?' + 'hdnea=' + token_el.attrib['auth'] + '&hdcore=3.2.0'