Ask HN: Full text search for audio files?

1 points by heap_perms ↗ HN
I was wondering if anybody knows open source projects that implement transcription to provide a grep-like functionality for mp3 files?

Of course I could write it myself, but I'd rather not want to re-invent the wheel here.

2 comments

[ 6.2 ms ] story [ 16.3 ms ] thread
Right now, the best I know of would be to get a transcript with whisper, and grep that. Do you know of better ways? Searching for a waveform for certain words is not quite something that anyone's done yet, to my knowledge.
Yes I was thinking the same thing, use whisper.cpp for better performance and simply grep it.