mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2026-04-10 19:03:49 +00:00
Update yt_dlp/extractor/linkedin.py
Co-authored-by: bashonly <88596187+bashonly@users.noreply.github.com>
This commit is contained in:
parent
d54d6d875f
commit
fbbed2a9b2
@ -314,9 +314,9 @@ class LinkedInEventsIE(InfoExtractor):
|
||||
|
||||
formats = []
|
||||
for prog_fmts in traverse_obj(player_data, ('progressiveStreams', ..., {dict})):
|
||||
for url in traverse_obj(prog_fmts, ('streamingLocations', ..., 'url', {url_or_none})):
|
||||
for fmt_url in traverse_obj(prog_fmts, ('streamingLocations', ..., 'url', {url_or_none})):
|
||||
formats.append({
|
||||
'url': url,
|
||||
'url': fmt_url,
|
||||
**traverse_obj(prog_fmts, {
|
||||
'width': ('width', {int_or_none}),
|
||||
'height': ('height', {int_or_none}),
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user