Reputation: 29
I've a problem doing my finals project:
I'm having trouble with how to save multiple wav files into 1 wav file.
For example - I have 3 wav files which are the syllables of the word "hospital" :
hos.wav
pi.wav
and tal.wav
Each of those syllable wav files contains utterances of the syllables of the word "hospital" respectively.
My task is to merge those files so that the word hospital could be reproduced from those files. I then have to save the merged file to be a new wav file, let say hospital.wav
.
I've done my first task, but not my second task.
Can anyone help?
Upvotes: 2
Views: 2071
Reputation: 9294
You can use Wave Audio Package for this.
And here is the implementation of a function to make a wave audio stream by merging several wave audio streams.
Upvotes: 3