mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 09:07:58 +01:00
[theplatform] Allow <par> without <swtich> at all
Bare `wget` on http://link.theplatform.com/s/kYEXFC/22d_qsQ6MIRTl results in an XML without <switch> at all but with <par> and <video> inside it. Let's handle this possible outcome as well.
This commit is contained in:
parent
0a1603634b
commit
aef8fdba11
1 changed files with 2 additions and 0 deletions
|
@ -142,6 +142,8 @@ def _real_extract(self, url):
|
|||
switch = body.find(_x('smil:switch'))
|
||||
if switch is None:
|
||||
switch = body.find(_x('smil:par//smil:switch'))
|
||||
if switch is None:
|
||||
switch = body.find(_x('smil:par'))
|
||||
if switch is not None:
|
||||
base_url = head.find(_x('smil:meta')).attrib['base']
|
||||
for f in switch.findall(_x('smil:video')):
|
||||
|
|
Loading…
Reference in a new issue