SpeechSynthesisVoice: voiceURI 属性
基线 广泛可用
此功能非常成熟,可以在许多设备和浏览器版本上使用。它自 2018 年 9 月.
报告反馈
值
voiceURI
是 SpeechSynthesisVoice
接口的只读属性,它返回该语音的语音合成服务的 URI 类型和位置。
示例
表示语音 URI 的字符串。这是一个通用 URI,可以指向本地或远程服务,例如,它可以是专有系统 URN 或指向远程服务的 URL。
for (let i = 0; i < voices.length; i++) {
const option = document.createElement("option");
option.textContent = `${voices[i].name} (${voices[i].lang})`;
if (voices[i].default) {
option.textContent += " — DEFAULT";
}
console.log(voices[i].voiceURI);
// On Mac, this returns URNs, for example 'urn:moz-tts:osx:com.apple.speech.synthesis.voice.daniel'
option.setAttribute("data-lang", voices[i].lang);
option.setAttribute("data-name", voices[i].name);
voiceSelect.appendChild(option);
}
规范
js |
---|
Web 语音 API # 规范 |
浏览器兼容性
dom-speechsynthesisvoice-voiceuri