“音频标签仅支持与当前语音频率相同的原始 PCM 16 位单声道文件。”是什么意思?

发布于 2024-12-04 14:42:59 字数 149 浏览 0 评论 0原文

当尝试使用 HTML5 标记时,出现以下错误:

仅原始 PCM 16 位单声道文件与当前频率相同 音频标签支持语音。

这意味着什么?

When trying to use the HTML5 <audio> tag, I get this error:

Only raw PCM 16 bits mono files with the same frequency as the current
voice are supported by the audio tag.

What does this mean?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

并安 2024-12-11 14:42:59

据我了解,HTML 5 标记仅支持与当前语音频率相同的原始 PCM 16 位单声道文件。您的文件格式错误 - 将其重新采样为单个(单声道)通道,例如 44.1KHz(标准),编码为 16 位 PCM,并且应该可以正常播放。

I understand that Only raw PCM 16 bits mono files with the same frequency as the current voice are supported by the HTML 5 <audio> tag. Your file is in the wrong format - resample it to a single (mono) channel at, say, 44.1KHz (standard), encoded as 16 bit PCM, and it should play fine.

泪意 2024-12-11 14:42:59

它是一个波形文件吗?如果没有,您需要将 pcm 放入 wav 文件中
PCM 是 wav 容器中的音频格式。我还认为 wav 文件中可能是 AIFF,但大多数 WAV 文件都包含 PCM。
因此,如果您尝试播放的文件不是 wav 文件,它可能会抱怨这一点。
只是扩展名是 wav 并不意味着它是一个 wav 文件。该文件需要有 wav 标头和 wav 所具有的其他内容。

is it a wave file? If not you need a put the pcm in to wav file
PCM is the audio format in wav containers. I also think it can be AIFF in wav files but mostly WAV files contain PCM.
So if the file you are trying to play is not a wav file it might be complaining about that.
Just the extension is wav does not also mean that it is a wav file. The file needs to have wav headers and other stuff that wav would have.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文