I was wondering if there was a tool similar to jCrop, with the exception that instead of an image I'd allow the user to crop an audio file? Google didn't give me any useful results sadly :(
The reason why I'm asking is that I'm making a tool to convert audio files to popular ringtone formats, and only letting the user specify the offsets in numbers is somewhat inconvenient. Obviously the tool doesn't have to be in javascript - anything that fits into a website is ok.
ffmpeg -i audio.mp3 -ss 00:01:00 -t 00:01:00 -acodec copy out.mp3to get 1:00-2:00) and use the HTML5<audio>tag with thecurrentTimeJS property (developer.mozilla.org/en/DOM/HTMLMediaElement) to allow the user to play the media to find the offsets interactively. – Lucas Jones Jul 9 '11 at 16:23