Questions tagged [fmod]

FMOD consists of a runtime library and sound design tool used for the creation and playback of interactive audio.

FMOD consists of a runtime library and sound design tool used for the creation and playback of interactive audio. FMOD is widely used in the games industry and has gained a strong reputation for its ease of use, powerful software-mixed architecture and comprehensive cross-platform support.

FMOD Studio is the current generation sound design tool (the successor to FMOD Designer) and is powered by FMOD 5, the fifth generation audio engine and API.

Supported Platforms

  • 3DS
  • Android
  • BlackBerry Playbook
  • Google Native Client (NaCl)
  • iOS
  • Linux
  • Mac
  • PS2
  • PS3
  • PS4
  • PSP
  • PS Vita
  • Wii
  • Wii U
  • Windows
  • Windows Phone
  • Windows Store
  • Xbox360
  • Xbox One

Resources

276 questions
-2
votes
1 answer

Setting up FMOD

I am trying to set up FMOD for Android.I have downloaded a working project for Android Studio from here: https://github.com/WillCoder/Fmod-Sample-3d So whene i run the project those Method cannot be resolved: private native String…
Folio
  • 1
-2
votes
1 answer

Issue when using FMOD library

I'm trying to retrieve the sound spectrum with the FMOD Studio LowLevel library. However, it seems that the FMOD_Channel_GetSpectrum() function has been removed from the library, and I can't find any other version that have this function. Does…
Arthur Chaloin
  • 610
  • 1
  • 5
  • 12
-2
votes
1 answer

How to convert pounds to grams and kilograms - C++

#include #include #include using namespace std; int main () { //Declare variables double pounds, grams, kilograms; //Declare constants const double LB2GRM = 453.592; //Give title to program cout << "Pound to…
Nora
  • 11
  • 1
  • 9
-2
votes
2 answers

lambda function c++ 11

Any idea how to rewrite this lambda function pre c++11? if (maxVol != 0) std::transform(&spec[0], &spec[sampleSize], &spec[0] , [maxVol] (float dB) -> float { return dB / maxVol; }); The code is from…
JasperK
  • 71
  • 1
  • 6
-2
votes
1 answer

Spectrum Analyzer with Python?

I want to create a music player with Python which uses OpenGL for visualizing the audio spectrum. I already have the 3d engine set up and all I need is to get the spectrum data and feed it to the renderer. I'd imagine it would be a list of numbers…
user975135
-2
votes
1 answer

FMOD sound stutter when screen off

FMOD sound stutter when screen off. following is source code. result = FMOD_System_CreateSound(gSystem, songPath, FMOD_CREATECOMPRESSEDSAMPLE | FMOD_SOFTWARE, 0, &gSound); CHECK_RESULT(result); __android_log_write(ANDROID_LOG_INFO, "path",…
choijuho
  • 75
  • 1
  • 1
  • 8
1 2 3
18
19