mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-01 17:23:48 +01:00
[livestream] Properly build smil URLs (#8794)
This commit is contained in:
parent
2bfc0e97f6
commit
e375a149e1
@ -14,6 +14,7 @@
|
|||||||
xpath_with_ns,
|
xpath_with_ns,
|
||||||
xpath_text,
|
xpath_text,
|
||||||
orderedSet,
|
orderedSet,
|
||||||
|
update_url_query,
|
||||||
int_or_none,
|
int_or_none,
|
||||||
float_or_none,
|
float_or_none,
|
||||||
parse_iso8601,
|
parse_iso8601,
|
||||||
@ -72,7 +73,10 @@ def _parse_smil_formats(self, smil, smil_url, video_id, namespace=None, f4m_para
|
|||||||
for vn in video_nodes:
|
for vn in video_nodes:
|
||||||
tbr = int_or_none(vn.attrib.get('system-bitrate'), 1000)
|
tbr = int_or_none(vn.attrib.get('system-bitrate'), 1000)
|
||||||
furl = (
|
furl = (
|
||||||
'%s%s?v=3.0.3&fp=WIN%%2014,0,0,145' % (base, vn.attrib['src']))
|
update_url_query(compat_urlparse.urljoin(base, vn.attrib['src']), {
|
||||||
|
'v': '3.0.3',
|
||||||
|
'fp': 'WIN% 14,0,0,145',
|
||||||
|
}))
|
||||||
if 'clipBegin' in vn.attrib:
|
if 'clipBegin' in vn.attrib:
|
||||||
furl += '&ssek=' + vn.attrib['clipBegin']
|
furl += '&ssek=' + vn.attrib['clipBegin']
|
||||||
formats.append({
|
formats.append({
|
||||||
|
Loading…
Reference in New Issue
Block a user