[dfb] Fix f4m manifest URL

merge-requests/5/head
Sergey M․ 2014-08-17 02:07:04 +07:00
parent 49807b4ac6
commit c1d293cfa6
1 changed files with 1 additions and 1 deletions

View File

@ -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'