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
0
votes
1 answer

PHP modulo vs substract at PHP_INT_MAX

At some point i had this block of code: while( $i> $l-1 ) { $x= fmod($i,$l); $i= floor($i/$l); } I decided to get rid of the modulo operation and wrote this block: while( true ) { $d= floor( $i/$l ); if( $d>= 1 ) { $x=…
0gap
  • 21
  • 7
0
votes
0 answers

qt problems for playing audio beside fmod system

I try to run 2 server at the same time on ubuntu, in order to support two groups of softwares. One of them is a qt server that uses QSound objects and the other is written in C and uses fmod to play audio. When I run the fmod based server and then…
zahrak
  • 1
  • 2
0
votes
1 answer

FMOD frequency analysis/normalisation

I am using the FMOD library to apply FFT to an audio stream, providing me with a constantly updating fixed number of frequency bins. Each bin represents an equal frequency range, with a value between 0 and 1 to represent the intensity of this range…
w4ffle
  • 5
  • 2
0
votes
0 answers

FMOD_System_Init Crash

I'm trying to use the FMOD audio API in my game but the app starts and then closes. I tried to debug it and the program crashes at the FMOD_System_Init function. void AudioSystem::Init() { FMOD_System_Create(&sys); // FMOD_SYSTEM* sys; …
dcubix
  • 187
  • 2
  • 10
0
votes
1 answer

Why doesn't playSound actually output any sound using FMOD on windows?

FMOD_RESULT result; FMOD::System *system; result = FMOD::System_Create(&system); if (result != FMOD_OK) { printf("FMOD error! (%d) %s\n", result, FMOD_ErrorString(result)); } result = system->init(100, FMOD_INIT_NORMAL, 0); if…
ieplugin
  • 661
  • 1
  • 7
  • 12
0
votes
1 answer

ArgumentException: The specified structure must be blittable or have layout information

Have been pulling my hair trying to get this working for almost a week. Have solve several issues and now I'm down to this new error when I try to convert IntPtr to a DSP_DESCRIPTION structure. Could anyone please shine some light? Thanks in…
Carlos Chacon
  • 241
  • 1
  • 4
  • 17
0
votes
1 answer

Is there a demo for add effects and export to wav files?

Is there a demo for add effects and export to wav files? I have searched, but not find a way to solve it. Add effects to a input.wav file, and play it. and then export a new wav file with effects. please help me. my code is : result =…
badboy_tqj
  • 300
  • 2
  • 14
0
votes
2 answers

Use Fmodex callback under C++

i'm using fmodex and i'm trying to use FMOD_FILE_OPEN_CALLBACK under C++. FMOD_RESULT F_CALLBACK FMOD_FILE_OPEN_CALLBACK(const char *name, unsigned int *filesize, void **handle, void *userdata); But I would like to execute a method of a class. So I…
Maluna34
  • 245
  • 1
  • 16
0
votes
1 answer

Dynamic DSP.setParameter with FMOD

I want to play sound with effect. In example, I'm using low and highpass, I want to set the parameters of two effect with the mouse location (x, y). I used DSP.reset() and DSP.setParameter(), but, there is a problem. If I moved the mouse faster and…
0
votes
1 answer

Saving FFT Spectrum in Fmod Studio C++

I'm trying to save the Spectrum in my FMOD_DSP_PARAMETER_FFT but I'm only receiving the spectrum full of zeros, if you can watch my mistake I will agree, I think that I'm not connecting well the DSP to the channel or something similar because I…
Custodius
  • 63
  • 10
0
votes
1 answer

setFrequency in FMOD doesn't work satisfactorily

I'm trying to use FMOD to develop an application that is expected to be able to play audio more slowly than normal so that the user could hear the audio more clearly. In my code, I called Channel::setFrequency like this: float…
xiaokaoy
  • 1,608
  • 3
  • 15
  • 27
0
votes
1 answer

How to send Sound Stream of a file from disk over network using FMOD?

i'm currently working on a project in college. my application should do some things with audio files from my computer. i'm using FMOD as sound library. the problem i have is, that i dont know how to access the data of a soundfile (wich was opened…
chris
  • 1
  • 1
0
votes
1 answer

fmodex returning ERR_FILE_BAD playing an MP3 file under Mono/Ubuntu

I'm trying to use fmodex 4.30.03 to play an MP3 file under Mono/Ubuntu. My call to createSound() looks as follows: result = system.createSound(path, (FMOD.MODE._2D | FMOD.MODE.HARDWARE | FMOD.MODE.CREATESTREAM), ref sound); as per the C#…
tomfanning
  • 9,552
  • 4
  • 50
  • 78
0
votes
1 answer

FMOD pcmreadcallback never is called while playing audio from a microphone source

I'm writing a Unity class to capture and playback audio data from a microphone. Playback part works fine I can hear my voice in the headphones but I cannot access audio samples because pcmsetposcallback is never called during playback. It is called…
Walter
  • 1
  • 2
0
votes
1 answer

Microphone Input Playback (Fmod studio API)

I got my microphone input working fine in my custom engine. I am getting all the levels, dominant frequency data i need from the microphone. The issue is i'm still hearing microphone playback. I tried muting the channel. If i do that i end up…