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, ...
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
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 ...
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
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
201 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
2answers
129 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
194 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
2answers
177 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
738 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 ...
0
votes
1answer
28 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
58 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
3answers
103 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
91 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
153 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
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
0answers
88 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
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
2answers
123 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 ...
0
votes
2answers
658 views
How to use FMOD with C++?
I'm trying to create a simple mp3 player using FMOD:
#include "inc/fmod.h"
int main()
{
FSOUND_Init(44100, 32, 0);
return 0;
}
Trying to compile the program I get the following error:
...
0
votes
2answers
386 views
Visual C++ 2008; add library to compilation process?
I have a project that needs the fmod library, and I need to have the compiler search the directory I installed it in for the source code. This is pretty much my first time interacting with the C++ ...
0
votes
2answers
357 views
Get sound level from device while recording in C++
I want to get sound level, so I can display it in my SDL application (the platform is Linux) when recording sound. How can I do that? I use FMOD API in my app, but for recording, I'm using SoX ...
0
votes
1answer
643 views
'An invalid object handle was used' in FMOD 3D sound listener
I'm trying to set up 3D sounds with FMOD in a game which uses Ogre. The sound listener is attached to the camera which runs on a spline. I have footstep sounds attached to the player, and the volume ...
0
votes
2answers
445 views
Difference in FMOD between Sound.readData and Sound.lock?
I'm trying to sort the difference between Sound.readData and Sound.lock in the FMOD library (I'm programming in C#/C++ but I'll take the answer in any language!). The end goal is to create a view of ...
0
votes
1answer
343 views
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 = ...