mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-16 10:32:40 +09:00
[sportdeutschland] Do not abort if meta info is missing
This fixes http://sportdeutschland.tv/badminton/yonex-copenhagen-masters-2015 . No testcase though since the event will be over by 2016.
This commit is contained in:
parent
46124a49b2
commit
9f610f3a9e
@ -70,10 +70,12 @@ class SportDeutschlandIE(InfoExtractor):
|
|||||||
|
|
||||||
smil_doc = self._download_xml(
|
smil_doc = self._download_xml(
|
||||||
smil_url, video_id, note='Downloading SMIL metadata')
|
smil_url, video_id, note='Downloading SMIL metadata')
|
||||||
base_url = smil_doc.find('./head/meta').attrib['base']
|
base_url_el = smil_doc.find('./head/meta')
|
||||||
|
if base_url_el:
|
||||||
|
base_url = base_url_el.attrib['base']
|
||||||
formats.extend([{
|
formats.extend([{
|
||||||
'format_id': 'rmtp',
|
'format_id': 'rmtp',
|
||||||
'url': base_url,
|
'url': base_url if base_url_el else n.attrib['src'],
|
||||||
'play_path': n.attrib['src'],
|
'play_path': n.attrib['src'],
|
||||||
'ext': 'flv',
|
'ext': 'flv',
|
||||||
'preference': -100,
|
'preference': -100,
|
||||||
|
Loading…
Reference in New Issue
Block a user