Hi,
I have a audio file(s) that need to be cut and broken up into multiple audio files based on a keyword. For example, lets say the keyword is "CUT"
if we had an wav file called "original.wav" with the following audio,
"Hello , is this CUT the time is CUT My name is CUT The balance is"
and the token audio cut.wav which contains the audio "CUT"
So original.wav, and cut.wav are feed into a program
and the output is
file1.wav which contains audio "Hello, is this"
file2.wav which contains audio "the time is"
file3.wav which contains audio "My name is"
file4.wav which contains audio "The balance is"
I have no experience in audio programming at all, what libraries would I need and how would I go about this.
Thanks