I need help getting started with libsndfile.
I have four .wav files (all the same sample rate).
I want to join the first two together,then the next two together,
Then mix the resulting 2 .wav files into one.
|
I need help getting started with libsndfile. I have four .wav files (all the same sample rate). I want to join the first two together,then the next two together, Then mix the resulting 2 .wav files into one.
| |||
|
feedback
|
|
For mixing two wav files. Please include the "<>" tags for these include files. I am facing some issues while writing them with "<>" tags include cstdioinclude sndfile.hinclude windows.hinclude cstdlibinclude cmathdefine BUFFER_LEN 1024define MAX_CHANNELS 6static void data_processing (double *data, int count, int channels) ; int main (void) {
} /* main */ static void data_processing(double *data, int count, int channels) { double channel_gain [MAX_CHANNELS] = { 0.5, 0.8, 0.1, 0.4, 0.4, 0.9 } ; int k, chan ;
} /* data_processing */ This is how i am mixing two simple wav files which are 16 bit signals. First of all audio mixing is not easy as one might think. There might be many ambiguities after joining two signals. In my case it is working just fine as much as i need it, but if you need exact results you might need to google more for exact superimposing signals over each other. For joining two wav files you can just read your first wav file copy the data in the result wav file and finally append the data of the second wav file to the result wav file. This link might also be useful for you http://www.vttoth.com/digimix.htm | |||
|
feedback
|