非播放音频上的 FMOD

发布于 2024-08-24 21:03:06 字数 128 浏览 9 评论 0原文

  1. 嘿,如果歌曲没有播放,有什么方法可以使用 FMOD 获取歌曲部分的音频频谱吗?
  2. 我可以在播放歌曲之前使用 FMOD (+opengl/openframeworks/etc.) 渲染完整的歌曲波形吗?
  1. Hey, is there any way to get the audio spectrum of a section of a song using FMOD if it is not playing?
  2. Can I render a full song waveform using FMOD (+opengl/openframeworks/etc.) before the song is playing?

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

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

发布评论

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

评论(1

萌逼全场 2024-08-31 21:03:06
  1. 是的。
  2. 是的,但您必须对时域波形数据进行自己的频谱分析。

您可以使用 Sound::lock 从 FMOD::Sound 获取波形数据。为此,您必须将声音创建为 FMOD_SAMPLE,这意味着整首歌曲将被解压缩到内存中。您可以使用此数据渲染波形并进行频谱分析。 FMOD 的内置“getSpectrum”功能仅适用于频道或频道组中播放数据的快照。

  1. Yes.
  2. Yes but you will have to do the your own spectrum analysis on the time domain wavedata.

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.

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