[livestream] Make clipBegin optional in SMIL
This commit is contained in:
parent
3182f3e2dc
commit
7fa547ab02
1 changed files with 4 additions and 2 deletions
|
@ -73,8 +73,10 @@ class LivestreamIE(InfoExtractor):
|
||||||
for vn in video_nodes:
|
for vn in video_nodes:
|
||||||
tbr = int_or_none(vn.attrib.get('system-bitrate'))
|
tbr = int_or_none(vn.attrib.get('system-bitrate'))
|
||||||
furl = (
|
furl = (
|
||||||
'http://livestream-f.akamaihd.net/%s?v=3.0.3&fp=WIN%%2014,0,0,145&seek=%s' %
|
'http://livestream-f.akamaihd.net/%s?v=3.0.3&fp=WIN%%2014,0,0,145' %
|
||||||
(vn.attrib['src'], vn.attrib['clipBegin']))
|
(vn.attrib['src']))
|
||||||
|
if 'clipBegin' in vn.attrib:
|
||||||
|
furl += '&ssek=' + vn.attrib['clipBegin']
|
||||||
formats.append({
|
formats.append({
|
||||||
'url': furl,
|
'url': furl,
|
||||||
'format_id': 'smil_%d' % tbr,
|
'format_id': 'smil_%d' % tbr,
|
||||||
|
|
Loading…
Reference in a new issue