作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试找出使用哪种技术来根据音频突出显示文本。很像 https://speechify.com/
正在做的事情。
这是假设我能够运行 TTS 算法并且能够将文本转换为语音。我尝试了多种来源,但无法确定在音频说话时突出显示文本的确切技术或方法。
任何帮助将不胜感激。我已经在互联网上浪费了两天时间来解决这个问题,但没有运气:(
最佳答案
一个简单的方法是使用 SpeechSynthesisUtterance boundary event 提供的事件监听器使用 vanilla JS 突出显示单词。发出的事件为我们提供了字符索引,因此无需疯狂地使用正则表达式或 super 人工智能的东西:)
首先,请确保 API 可用
const synth = window.speechSynthesis
if (!synth) {
console.error('no tts for you!')
return
}
tts 话语发出一个“边界”事件,我们可以用它来突出显示文本。
let text = document.getElementById('text')
let originalText = text.innerText
let utterance = new SpeechSynthesisUtterance(originalText)
utterance.addEventListener('boundary', event => {
const { charIndex, charLength } = event
text.innerHTML = highlight(originalText, charIndex, charIndex + charLength)
})
synth.speak(utterance)
完整示例:
const btn = document.getElementById("btn")
const highlight = (text, from, to) => {
let replacement = highlightBackground(text.slice(from, to))
return text.substring(0, from) + replacement + text.substring(to)
}
const highlightBackground = sample => `<span style="background-color:yellow;">${sample}</span>`
btn && btn.addEventListener('click', () => {
const synth = window.speechSynthesis
if (!synth) {
console.error('no tts')
return
}
let text = document.getElementById('text')
let originalText = text.innerText
let utterance = new SpeechSynthesisUtterance(originalText)
utterance.addEventListener('boundary', event => {
const { charIndex, charLength } = event
text.innerHTML = highlight(originalText, charIndex, charIndex + charLength)
})
synth.speak(utterance)
})
这是非常基本的,您可以(并且应该)改进它。
糟糕,我忘了它被标记为 ReactJs。这是使用 React 的相同示例(codesandbox 链接位于评论中):
import React from "react";
const ORIGINAL_TEXT =
"Call me Ishmael. Some years ago—never mind how long precisely—having little or no money in my purse, and nothing particular to interest me on shore, I thought I would sail about a little and see the watery part of the world.";
const splitText = (text, from, to) => [
text.slice(0, from),
text.slice(from, to),
text.slice(to)
];
const HighlightedText = ({ text, from, to }) => {
const [start, highlight, finish] = splitText(text, from, to);
return (
<p>
{start}
<span style={{ backgroundColor: "yellow" }}>{highlight}</span>
{finish}
</p>
);
};
export default function App() {
const [highlightSection, setHighlightSection] = React.useState({
from: 0,
to: 0
});
const handleClick = () => {
const synth = window.speechSynthesis;
if (!synth) {
console.error("no tts");
return;
}
let utterance = new SpeechSynthesisUtterance(ORIGINAL_TEXT);
utterance.addEventListener("boundary", (event) => {
const { charIndex, charLength } = event;
setHighlightSection({ from: charIndex, to: charIndex + charLength });
});
synth.speak(utterance);
};
return (
<div className="App">
<HighlightedText text={ORIGINAL_TEXT} {...highlightSection} />
<button onClick={handleClick}>klik me</button>
</div>
);
}
关于reactjs - 如何在音频叙述时根据网站上的音频实时突出显示文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71989908/
有没有一种方法可以“标记”对象的属性,使它们在反射中“突出”? 例如: class A { int aa, b; string s1, s2; public int AA
我是一名优秀的程序员,十分优秀!