Earlier quoted context omitted.
I have had very good results using Spectropic [1], a hosted Whisper Diarization API service as a platform. I found it cheap and way easier and faster than setting up and using whisper-diarization on my M1. Audiogest [2] is a web service built upon Spectropic, I have not yet used it. disclaimer : I am not affiliated in any way, just a happy customer! I had some nice mail exchanges after bug reports with the (I believe…
Thanks for the shout-out and kind words! Thomas here, maker of Spectropic and Audiogest. I am indeed focused on building a simple and reliable Whisper + diarization API. Also working on providing fine-tuned versions of Whisper of non-English languages through the API. Feel free to reach out to me if anyone is interested in this!
OTranscribe: A free and open tool for transcribing audio interviews
51–60 of 109 posts
Re: OTranscribe: A free and open tool for transcribing audio interviews
#52I needed to do this this week (transcribe an interview with multiple speakers) and used https://github.com/MahmoudAshraf97/whisper-diarization Worked excellent. It generates both a file that just contains a line per uninterrupted speaker speech prefixed with the speaker number, as well as a file with timestamps which I believe would be used as subtitles.
- transcription
- machine translation
- OCR
- image recognition
Re: OTranscribe: A free and open tool for transcribing audio interviews
#53Anyone knows a free tool for generating subtitles for movies and series videos ?
Make sure they are recent tutorials because they will probably mention how to use the automated generation tools/plugins that wasn't available years ago.
Re: OTranscribe: A free and open tool for transcribing audio interviews
#54Re: OTranscribe: A free and open tool for transcribing audio interviews
#55 Does oTranscribe automatically convert audio into text?
Sorry! It doesn’t. oTranscribe makes the manual task of transcribing
audio a lot less painful. But you still have to do the transcription.Re: OTranscribe: A free and open tool for transcribing audio interviews
#56I needed to do this this week (transcribe an interview with multiple speakers) and used https://github.com/MahmoudAshraf97/whisper-diarization Worked excellent. It generates both a file that just contains a line per uninterrupted speaker speech prefixed with the speaker number, as well as a file with timestamps which I believe would be used as subtitles.
The problem with using OpenAI whisper is that its too slow on CPU only machines. Whisper.CPP is blazing fast compared to Whisper and I wish people build better diarization on top of that.
Re: OTranscribe: A free and open tool for transcribing audio interviews
#57- Transcribe word-by-word in real time as audio is recorded
- Work entirely locally
- Use relatively recent open-source local models?
I've been using otter.ai for real-time meeting transcriptions - letting me multitask and instantly catch up if I'm asked a question by skimming the most recent few seconds worth of the transcript - but it's far from perfect and occasionally their real-time service has significant transcription delays, not to mention it requires internet connectivity.
Most of the Whisper-based apps out there, though, as well as (when I last checked) the whisper.cpp demo code, require an entire recording to be ingested at once. There are others that rely on e.g. Apple's dictation frameworks, which is a bit dated in capability at the moment.
Anything folks are using out there?
Re: OTranscribe: A free and open tool for transcribing audio interviews
#58Are there any open-source or paid apps/shareware/freeware that can: - Transcribe word-by-word in real time as audio is recorded - Work entirely locally - Use relatively recent open-source local models? I've been using otter.ai for real-time meeting transcriptions - letting me multitask and instantly catch up if I'm asked a question by skimming the most recent few seconds worth of the transcript - but it's far from pe…
Re: OTranscribe: A free and open tool for transcribing audio interviews
#59Re: OTranscribe: A free and open tool for transcribing audio interviews
#60https://video2srt.ccextractor.org/
Disclaimer: Working on this project.