I have to write a c++ program for sound synthesis and rather complicated,i don't really know from where to start:
My program is to be used in robotics. It should read an input from an mp3 file. It should also read data values from 2 other files. Using those values, i modify the input and send it back to an output such as headphones(this is done in order to reconstruct a 3D virtual audio system).
The main issue here is that this should all be done in real time, which means that i should probably sample the input, do my calculation and then reconstruct the signal at the output, in a real quick and continuousmanne r.
I'm still new in c++ and i know only up to classes and inheritence, (and now i know how to open and read files thanks to Banfa).
Please if anyone can give me hints as from where to start or some pre-written source code that would save me some time....
My program is to be used in robotics. It should read an input from an mp3 file. It should also read data values from 2 other files. Using those values, i modify the input and send it back to an output such as headphones(this is done in order to reconstruct a 3D virtual audio system).
The main issue here is that this should all be done in real time, which means that i should probably sample the input, do my calculation and then reconstruct the signal at the output, in a real quick and continuousmanne r.
I'm still new in c++ and i know only up to classes and inheritence, (and now i know how to open and read files thanks to Banfa).
Please if anyone can give me hints as from where to start or some pre-written source code that would save me some time....