如何在 Android 中更改 .wav 文件的音调?
有人可以告诉我如何更改 Android 中波形文件的音调吗?
Can somebody tell me how to change the pitch of a wave file in Android?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有人可以告诉我如何更改 Android 中波形文件的音调吗?
Can somebody tell me how to change the pitch of a wave file in Android?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
Android没有内置这样的功能,而且这个过程一点也不简单。如果您想尝试自己编码,我建议您查看 PSOLA、WSOLA 和 Phase Vocoder 等用于音调改变的算法。 Udo Zölzer 所著的《DAFX》一书非常详细地讨论了其中的许多内容,而且其中大部分内容相当简单。我相信,相位声码器工作速度最快,但也需要更多的 DSP 和数学知识来理解。 PSOLA 可能是数学上最简单的。我个人更喜欢 WSOLA 和增强型 WSOLA (EWSOLA),但它们需要相当多的处理能力。
对于相关技术(如果您使用 WSOLA),我建议在频域(基于 Google FFT 的相关)中使用它。速度要快得多。
如果其中大部分内容超出了您的理解范围,您可能需要重新考虑这样做,但我绝不试图阻止您。 =)
Android does not have such functions built in, and the process is not at all trivial. If you would like to try and code it yourself, I suggest looking at such algorithms as PSOLA, WSOLA and Phase Vocoder for pitch alteration. The book DAFX by Udo Zölzer discusses many of these in quite good detail and most of it is fairly straightforward. Phase Vocoder, I believe, works the fastest, but also takes more DSP and mathematical knowledge to understand. PSOLA is perhaps the least mathematically complicated. I personally prefer WSOLA and Enhanced WSOLA (EWSOLA), but those take quite a bit of processing power.
For correlation techniques (if you use WSOLA) I suggest doing it if frequency domain (Google FFT-based correlation). It is much quicker.
If most of this had just gone over your head, you might want to reconsider doing this altogether, but I by no means try to discourage you. = )