vote up 0 vote down star
1

I'm working on a tool to edit .srt (subtitle) files within the browser (the tool is to be used for linguistic annotation). In desktop tools that are used for similar purposes, the user has access to the wave form, and can "see" where silences are in the signal, and thus select a particular phrase for transcription.

Such a tool might be buildable in-browser down the road (using Web Workers and Canvas, say), but for now it's not feasible to do the sort of signal processing it would take to find those silences.

So, I'm thinking about the next-best approach: what free tool could I use to produce a list of timestamps of where silences (below some given threshold) start and stop? If I produce such a list offline, and upload it with the audio file, then I can at least make it possible to navigate through the "phrases" (defined as periods of non-silence). I think that would still be a win for in productivity for doing the transcription.

Audacity can sort of do this, but AFAICT, only if you install Nyquist, which seems to have some patent issues.

Are there any alternatives?

It would be nice if the tool could handle as many as possible of ogg, mp3, and wav files.

flag
I've done waveform analysis of mp3s (and wavs) using Java. While not trivial, it's not that bad. I think Java Sound is the API you want (if memory serves). Also see tritonus.org/plugins.html – yar Nov 2 at 2:23
What patent issues? Why does this prevent you from using it? – endolith Nov 9 at 23:00
Thanks yar and endolith. I see now that I was mistaken about the patent issues with Nyquist; apparently it ships with Audacity and there is an existing plugin: wiki.audacityteam.org/index.php?title=Splitting_r… My misunderstanding resulted from a conversation I had on irc in #audacity a while back. I guess the situation has changed; sorry for the misunderstanding. – pat Nov 10 at 0:30

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.