Tagged Questions

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, ...
2
votes
1answer
276 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, ...
0
votes
2answers
70 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
97 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
123 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
1answer
106 views

MiniFMOD compilation

I'm starting development, and yet having lots of problems coming out from the moment I 'm trying to go a little bit out of bounds. I usually work with CodeBlocks and just tried once to compile using ...
0
votes
3answers
636 views

playing only part of a sound using FMOD

I'm trying to play only part of a sound using FMOD, say frames 50000-100000 of a 200000 frame file. I have found a couple of ways to seek forward (i.e. to start playback at frame 50000) but I have not ...