非播放音频上的 FMOD
- 嘿,如果歌曲没有播放,有什么方法可以使用 FMOD 获取歌曲部分的音频频谱吗?
- 我可以在播放歌曲之前使用 FMOD (+opengl/openframeworks/etc.) 渲染完整的歌曲波形吗?
- Hey, is there any way to get the audio spectrum of a section of a song using FMOD if it is not playing?
- Can I render a full song waveform using FMOD (+opengl/openframeworks/etc.) before the song is playing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 Sound::lock 从 FMOD::Sound 获取波形数据。为此,您必须将声音创建为 FMOD_SAMPLE,这意味着整首歌曲将被解压缩到内存中。您可以使用此数据渲染波形并进行频谱分析。 FMOD 的内置“getSpectrum”功能仅适用于频道或频道组中播放数据的快照。
You can get the wave data from the FMOD::Sound using Sound::lock. To do this you would have to create the sound as FMOD_SAMPLE which means the entire song will be decompressed into memory. You can render the waveform using this data and also conduct your spectrum analysis. FMOD's inbuilt 'getSpectrum' function will only work with snapshots of the playing data in a Channel or ChannelGroup.