mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 09:07:58 +01:00
[utils] dfxp2srt: add additional namespace
Used by the ZDF subtitles (#9081).
This commit is contained in:
parent
8c7d6e8e22
commit
5bf28d7864
1 changed files with 2 additions and 1 deletions
|
@ -2131,6 +2131,7 @@ def dfxp2srt(dfxp_data):
|
|||
_x = functools.partial(xpath_with_ns, ns_map={
|
||||
'ttml': 'http://www.w3.org/ns/ttml',
|
||||
'ttaf1': 'http://www.w3.org/2006/10/ttaf1',
|
||||
'ttaf1_0604': 'http://www.w3.org/2006/04/ttaf1',
|
||||
})
|
||||
|
||||
class TTMLPElementParser(object):
|
||||
|
@ -2157,7 +2158,7 @@ def parse_node(node):
|
|||
|
||||
dfxp = compat_etree_fromstring(dfxp_data.encode('utf-8'))
|
||||
out = []
|
||||
paras = dfxp.findall(_x('.//ttml:p')) or dfxp.findall(_x('.//ttaf1:p')) or dfxp.findall('.//p')
|
||||
paras = dfxp.findall(_x('.//ttml:p')) or dfxp.findall(_x('.//ttaf1:p')) or dfxp.findall(_x('.//ttaf1_0604:p')) or dfxp.findall('.//p')
|
||||
|
||||
if not paras:
|
||||
raise ValueError('Invalid dfxp/TTML subtitle')
|
||||
|
|
Loading…
Reference in a new issue