我们创建了一个自定义 CAF v3 接收器。我们遇到了与此处描述的问题相同的问题(屏幕左上角的字幕)CAF 接收器:字幕定位。看起来谷歌设法在 shaka-player v2.2.10 中解决了这个问题。https://issuetracker.google.com/issues/71890891。但是,即使在Google 将其 caf 库引用更新为 shaka-player.js v2.2.10 之后,我们仍然遇到字幕定位问题。这是一个ttml的例子。
ttml:
<tt xml:lang="en" xmlns="http://www.w3.org/ns/ttml" xmlns:tt="http://www.w3.org/ns/ttml" xmlns:tts="http://www.w3.org/ns/ttml#styling" xmlns:ttm="http://www.w3.org/ns/ttml#metadata" >
<head>
<styling>
<style xml:id="speakerStyle" tts:fontFamily="proportionalSansSerif" tts:fontSize="4%" tts:textAlign="center" tts:displayAlign="after" tts:color="white" tts:textOutline="black 2px 0px" tts:backgroundColor="transparent" />
</styling>
<layout>
<region xml:id="speaker" tt:style="speakerStyle" tts:origin="10% 5%" tts:extent="90% 90%" tts:zIndex="1" />
</layout>
</head>
<body timeContainer="par">
<div xml:lang="und">
<p xml:id="c456f80_00" xml:space="preserve" begin="0.000000s" end="0.680000s" region="speaker" tts:backgroundColor="rgba(0,0,0,128)" >No podemos relacionar</p>
<p xml:id="c456f80_01" xml:space="preserve" begin="0.000000s" end="0.680000s" region="speaker" tts:backgroundColor="rgba(0,0,0,128)" >a Rutledge con el asesinato.</p>
</div>
<div xml:lang="und">
<p xml:id="c456f80_02" xml:space="preserve" begin="0.920000s" end="2.000000s" region="speaker" tts:backgroundColor="rgba(0,0,0,128)" >Cuando estuve en Chechenia</p>
<p xml:id="c456f80_03" xml:space="preserve" begin="0.920000s" end="2.000000s" region="speaker" tts:backgroundColor="rgba(0,0,0,128)" >identificando cadáveres,...</p>
</div>
</body>
我不确定,但我怀疑这里的“扬声器”区域中的tts:origin可能是原因。即使在谷歌的参考更新之后,还有人遇到同样的问题吗?为了自定义字幕定位,有没有其他选择?