English 中文(简体)
WAV file splitter utility
原标题:

I have a PROGRAMMING task (homework) to investigate brute force neural net methods. That part of the problem is MY homework.

We have to show that certain simple words repeated in a verbal conversion might be able to be recognized as similar. We don’t have to workout what the word is, just that it is a possible repeat. To limit my ‘search space’ I want to break up the WAV file into fragments. To avoid the ‘Donald Knuth’ syndrome I don’t want to divert energies into learning RMS, Fourier analysis for frequency profiling etc.

So I am looking for a windows based util to split wav files. I have looked at one called GramoFile.exe. It works well at the LP song level of breaking up vinyl platter recordings, but not at the small speech fragments. It is a Linux util with a DOS version. It is limited to split into 99 files only. I have tried to split to 99 fragments then run the first, second, etc split files through the GramoFile.exe but no luck. It can’t deal will the infinitesimal pauses between words.

Any suggestions people ?

最佳回答
问题回答

A wav is pretty simple.

Here is a c# snippet I wrote earlier to read in a wav into two arrays (left, right channel). Once you have it there you can split it any way you like. It should not be hard to port to your language of choice.

Mean amplitude of a .wav in C#





相关问题
Web application utility class

The following is a utility class that is called by a LoginBean to add and get a User object from a session through FacesContext. The application uses Spring. Should I use an annotation or is it an ...

Question on Utility Application - iPhone SDK

I have this application I made on a utility based app. How would I incorporate this app into a view based application so I can run the code from there.. Like 2 seperate projects in one. I basically ...

WAV file splitter utility

I have a PROGRAMMING task (homework) to investigate brute force neural net methods. That part of the problem is MY homework. We have to show that certain simple words repeated in a verbal conversion ...

Java: Static Class?

I have a class full of utility functions. Instantiating an instance of it makes no semantic sense, but I still want to call its methods. What is the best way to deal with this? Static class? Abstract?

热门标签