Tagged Questions

FMOD Interactive Audio Middleware, consisting of FMOD Ex library and FMOD Designer tool is a cross platform set of APIs and tools that help the creation and playback of interactive audio.

learn more… | top users | synonyms

5
votes
5answers
1k views

C API function callbacks into C++ member function code

So, I'm using the FMOD api and it really is a C api. Not that that's bad or anything. Its just it doesn't interface well with C++ code. For example, using FMOD_Channel_SetCallback( channel, ...
4
votes
2answers
115 views

FMod Memory Stream Problem

EDIT: Well...that's very interesting. I made settings into a pointer and passed that. Worked beautifully. So, this is solved. I'll leave it open for anyone curious to the answer. I'm having an ...
3
votes
3answers
330 views

Lib to play audio media in .NET?

I tried fmod.net but got a 'System.BadImageFormatException' error. I then tried WindowsMediaPlayer and have sounds playing. However i am having issues playing a sound when the current one ends ...
3
votes
7answers
2k views

After implementing fmod Visual C++ test strange behavior - All tests fail - Unable to get type… Error: System.IO.FileNotFoundException - if certain line of code in one test

Ok, I've figured out what caused the problem but I still don't know why - it happened when I started using fmod, and it must have something to do with how the linker decides to bring in and execute ...
2
votes
1answer
140 views

Callback delegates being collected?

Been messing around with FMOD for C# game development and I've hit a snag early on that I can't seem to get around. I want to do some branching audio stuff and sync some gameplay action to beats and ...
2
votes
1answer
40 views

Wait for event to play

How can I make sure an event finish playing even though I move around the listener in the 3D world at the same time. I only want to play the event at certain time with the same listener position as ...
2
votes
1answer
81 views

How to pass a sound name to Fmod on iPhone

Is there a way to get fmod to play a sound based on sound name? I can loop out the sound name by using this code: for (int subsoundindex = 0; subsoundindex < numsubsounds; subsoundindex++) ...
2
votes
1answer
267 views

FMOD play overlapping sounds

This may be a build in feature of FMOD, but I'd like to see if i can override it. When playing a SOUND with FMOD_System_PlaySound, FMOD_System_PlaySound( system, FMOD_CHANNEL_FREE, SOUND, false, ...
1
vote
1answer
81 views

FMOD - play multiple sounds simultaneously?

I am trying to set up my Sound Manager (FMOD) to play a background music and other action sounds on different channels, as I understand that this is the only way of having simultaneous sounds with ...
1
vote
0answers
131 views

Which OpenAL 3D distance model should I choose (migration from FMOD)?

I'm migrating from FMOD to OpenAL and I really need to know how to make OpenAL sound more like FMOD. From what I have gathered, by default FMOD uses a logarithmic distance model (like in rl) and it ...
1
vote
1answer
49 views

fmod halts Visual Studio 2008 output

This is a follow up to this post, but it's a little different so I felt it warranted a new question. Basically, Visual Studio has stopped outputting both printfs and memory leak info (I'm working on ...
1
vote
1answer
117 views

FMOD - Unhandled Exception with no source code avaiable

I'm trying to get my audio track to play using FMOD but I keep getting an unhandled exception and then it says there's no source code available, and shows me disassembly code. main.cpp bool ...
1
vote
1answer
66 views

Max 3D distance in fmod

I wonder what the maximum number of max 3d distance is? I have set it to 5250 in Fmod Designer but when I build my files it doesn't take effect. It works with 40 though. Can I change it in the code ...
1
vote
1answer
200 views

Sound recording with FMOD library

Is there a C++ tutorial on FMOD that shows how to record sound from microphone? Is it even possible?! Thanks everyone.
1
vote
1answer
88 views

Set sample rate in fmod

How do I set up the sample rate in Fmod? I initiate my event system with the following code. Can I add the sample rate into this method? result = eventSystem->init(32, FMOD_INIT_NORMAL | ...
1
vote
2answers
58 views

Change listener angle in FMOD

I have set up an event system in FMOD with 3D sound triggered when the listener is close to them. I want to be able to change the listener angle of the listener so that my entire sound landscape ...
1
vote
2answers
128 views

FMOD runs out of channels, FMOD_CHANNEL_FREE seems to not to work

I am initializing FMOD with 32 channels and playing short samples (1 second) with the following code: result = system->init(32, FMOD_INIT_NORMAL , NULL); // here I load the sounds // result = ...
1
vote
1answer
192 views

Save output to disk using FMOD

I am using FMOD to play some sounds and I would like to save the resulting mix to the disk. I have been trying the system->recordStart(0, sound, true) path, but that saves the microphone input of the ...
1
vote
1answer
566 views

What's the benefits of FMOD on iOS platform than Apple's audio APIs?

I heard FMOD is one of most popular audio engine in desktop apps such as games. I have read its documentation, but I can't feel any benefits of them than Apple's API like Audio Unit. It has many of ...
1
vote
2answers
176 views

problem with Fmod wrapper (soundManager) for Ogre3d

I have a problem with Soundmanager (class) (wrapper) for fmod in ogre3d engine. Here is the code just in case : ISoundManager.h If somebody wants I will upload it but I can't upload more than 2 ...
1
vote
3answers
737 views

C++:Undefined reference to 'FMOD:: X'

After looking around for various sound API libraries, I have decided to use FMOD for the time being. Problem is that whenever I try to compile one of the code examples, I get the following errors: ...
1
vote
2answers
594 views

FMOD Compiling trouble

I'm trying to get started with FMOD but I'm having some issues compiling the example code in this tutorial: http://www.gamedev.net/reference/articles/article2098.asp I'm using MinGW, I placed the ...
1
vote
2answers
1k views

C# FMOD Playing stream in realtime

i am trying to play a stream in real time ( I keep appedning data to it as it comes in from a nexternal source) but no matter what FMOD doesn't want to carry on playing after the first chunk that got ...
1
vote
2answers
593 views

fmod VS2008 unresolved externals in dependent project

I'm currently trying to use the latest stable fmod ex in my project. I have a main executable in a project called engine4, and a project named DX9Platform in the solution as well which ti depends on. ...
0
votes
1answer
27 views

Simple sound play in FMOD

I am starting using FMOD API and I have got problem with sound playing. I've used tutorial from this site: http://glasnost.itcarlow.ie/~powerk/audio/AddFMODtoaproject.html and only think I have got is ...
0
votes
2answers
60 views

FMOD error in borland turbo c++ 4.5

when I'm trying to compile it gives me 26 errors however everything is at its right place but won't able to understand the errors mostly constant is too long. Plz help I want to play a mp3 file ...
0
votes
1answer
57 views

Changing the tempo of a MIDI or WAV/MP3 file in FMOD

Is it possible to change the tempo of a MIDI or WAV/MP3 file using FMOD? I am using C++ alongside FMOD and cannot seem to find a function which will let me control the tempo of an audio file from ...
0
votes
2answers
50 views

FMOD - Unable to play simultaneous sounds

I am wondering if I am doing something wrong. I have set up my SoundManager class to have 5 different channels, in my game some sounds may be played at the same time, like the gun being fired and the ...
0
votes
1answer
99 views

compiling FMOD using gcc on windows?

I have the following example from the fmod api docs. /*=============================================================================================== PlaySound Example Copyright (c), Firelight ...
0
votes
1answer
89 views

How do I make FMOD for iPhone sound not pause when iPhone locks?

I am using FMOD for iPhone to generate a tone and play it, but when the iPhone locks the sound pauses. This is not the desired behavior, and only recently popped up. I hadn't tested it in awhile, ...
0
votes
3answers
99 views

unable to link FMOD library to VS2010 project

I am trying to link FMOD to my project, which I did very easily in the past in Visual Studio 2008.... So I have placed the fmodex_vc.lib and the fmodex.dll file in my project directory, added them to ...
0
votes
1answer
90 views

How to extract audio from a video with ffmpeg in C++?

I'm using FFmpeg to extract informations about a video file. But i want to extract the audio channels to read it with FMOD. How can I do that ? Is it simple ? Do you know a good tutorial about ...
0
votes
1answer
64 views

How to get length (duration) of a source with single buffer in OpenAL?

I'm migrating from FMOD to OpenAL and I can't find an analogue of the FSOUND_Sample_GetLength() function, which returns the length of the sample in samples (it doesn't take frequency in ...
0
votes
1answer
67 views

File not found error with FMOD FMOD_OUTPUTTYPE_WAVWRITER_NRT

i'm trying to run FMOD in WAVWRITER_NRT mode. I was modifying the example bundled with FMDO, but I always get an error on FMOD_System_Init. It says that the file cannot be found. I thought it would ...
0
votes
1answer
151 views

How do I setup Fmod to very basic functionality in a Win32 console application?

I'm new to Visual Studio and would like to set up the very basic functionality of Fmod in a Win32 console application. What I think the main problem is, is that I don't understand quite good how ...
0
votes
1answer
93 views

Saving output using FMOD without playback

I need to implement a playback of separate audio files in N channels, files may play sequentially or in parallel. I need to implement it on Android. Timeline: |file a...|file d....|file ...
0
votes
1answer
92 views

Streaming a remote file

i'm new to fmod, and I'm trying to use it for a simple application. I just need to open a remote music file (mostly mp3, and if that can help I can transcode on the server to always have mp3). When I ...
0
votes
1answer
59 views

Trying to call functions from other classes

I'm trying to get FMOD working but I just can't get the main() to call it int main() { cout << "Using FMOD \n"; cout << "Select a Track: 1-5 Horror \n"; cin >> HorrorTrack; ...
0
votes
2answers
159 views

FMOD gapless loop and sequence playback

I started using FMOD library, because I need to play sounds without gaps in C# application (both one sound in a loop and many sounds in a sequence). Can anyone show me the correct way to do it? I ...
0
votes
1answer
155 views

FMOD channel setVolume doesn't work

I use this: err = channel->setVolume(someVolumeBetween0and1); Even if err is FMOD_OK, the volume doesn't change. Am I doing something wrong? Is there any way to change the volume for a ...
0
votes
1answer
170 views

Streaming MP3 from Internet with FMOD

I thought this would be a relatively simple task with something like FMOD, but I can't get it to work. Even the example code netstream doesn't seem to do the trick. No matter what mp3 I try to play ...
0
votes
0answers
87 views

Bash script in XCode can't find executable

I'm following this tutorial to set up FMOD with XCode: http://bleepsandpops.com/post/4390907162/adding-the-fmod-api-to-an-xcode-project I have followed all of the steps (omitting the Event Network ...
0
votes
3answers
389 views

how to play midi file in andorid use fmod

I am trying to play midi file using fmod. But there is an error says that :a resource that the plugin requires cannot be found,(ie the DLS file for MIDI playback) I have searched results for problems ...
0
votes
1answer
85 views

FMOD Voice Chat

I want to create a voice chat software using FMOD. Now I can receive data from microphone and play it immediately. It's also easy to send sound data to another computer on the network. But I don't ...
0
votes
1answer
237 views

Fmod: read audio files,add effects,and then save the result int to files

I am using FMOD to play some sounds from files and I add some effects. I want to preview the effects added to it, and save the satisfied result to disk. I have tried using SetOutput and Init and then ...
0
votes
1answer
72 views

high resolution time from audio stream using fmod

Can someone show me how to get the actual stream time from fmod? The value from Channel getPosition using FMOD_TIMEUNIT_MS was working for me on iPhone until I upgraded to the latest version and now ...
0
votes
1answer
104 views

FMOD, Beats Per Second

Using FMOD (interactive audio middle ware), is it possible to calculate the Beats Per Second of a track in real time as it is playing? I am unable to find much information about this, it would be ...
0
votes
1answer
109 views

compiling FMOD with mingw?

I have the following example from gamedev, and I was wondering how you would go about compiling this. I've downloaded FMOD and its installed in C:\Program Files\FMOD SoundSystem\FMOD Programmers API ...
0
votes
2answers
114 views

Play fmod event sounds in 3D

I have an event called Numbers. In Fmod Designer the event plays different numbers depending on listenerAngle. I want to be able to hear the different sounds when I position this event in a 3D space. ...
0
votes
2answers
122 views

FMOD Result not being recognized as a valid type?

I have following block of code copied almost verbatim out of the fmod tutorials, with a minor modification of variable names so as not to conflict with anything. My code compiles fine without any of ...

1 2