Does this have the ability to edit historic words as more info becomes available? Eg. If I say "I scream", it sounds phonetically identical to "Ice cream". Yet the transcription of "I scream is the best dessert" makes a lot less sense than "Ice cream is the best dessert". Doing this seems necessary to have both low latency and high accuracy, and things like transcription on android do that and you can see the adjusti…
A good opportunity to point people to the paper with my favorite title of all time: "How to wreck a nice beach you sing calm incense" https://dl.acm.org/doi/10.1145/1040830.1040898
FFmpeg 8.0 adds Whisper support
171–180 of 341 posts
Re: FFmpeg 8.0 adds Whisper support
#172How could one in theory, use this to train on a new language? Say for a hubby project; I have recordings of some old folks stories in my local dialect. │ └── Dey well; Be well
Re: FFmpeg 8.0 adds Whisper support
#173Earlier quoted context omitted.
Isn't that a bit much for ASR models? Humans can't handle simultaneous multilingual dictation task either, I have to stop and reinitialize ears before switching languages between English and my primary one.
Isn't that exactly what intepreters do?
That's how I anecdotally feel and interpret how my own brain appear to work, so it could be different from how interpreters work or how actual human brains work, but as far as I see it, professional simultaneous interpreters don't seem to be agnostic for relevant pairs of languages at all.
Re: FFmpeg 8.0 adds Whisper support
#174Does this have the ability to edit historic words as more info becomes available? Eg. If I say "I scream", it sounds phonetically identical to "Ice cream". Yet the transcription of "I scream is the best dessert" makes a lot less sense than "Ice cream is the best dessert". Doing this seems necessary to have both low latency and high accuracy, and things like transcription on android do that and you can see the adjusti…
It makes me curious about how human subtitlers or even scriptwriters choose to transcribe intentionally ambiguous speech, puns and narratively important mishearings. It's like you need to subtitle what is heard not what is said. Do those born profoundly deaf specifically study word sounds in order to understand/create puns, rhymes and such so they don't need assistance understanding narrative mishearings? It must fee…
Re: FFmpeg 8.0 adds Whisper support
#175Earlier quoted context omitted.
Thanks. Now I know that I'm not that stupid and this actually makes no sense
It actually does make sense. Not saying you're stupid, but in standard English, if you say it quickly, the two sentences are nearly identical.
Re: FFmpeg 8.0 adds Whisper support
#176Earlier quoted context omitted.
Whisper works on 30 second chunks. So yes it can do that and that’s also why it can hallucinate quite a bit.
Whisper is excellent, but not perfect. I used Whisper last week to transcribe a phone call. In the transcript, the name of the person I was speaking with (Gem) was alternately transcribed as either "Jim" or "Jem", but never "Gem."
Re: FFmpeg 8.0 adds Whisper support
#177Earlier quoted context omitted.
Yes. From the documentation: > It runs automatic speech recognition using the OpenAI's Whisper model.
Thanks, I was being tripped up by DDOS protection on code.ffmpeg.org for a minute and couldn't read the patch. The combo of Firefox and the fact that Quantum/Lumen/CenturyLink seems to get off by rotating my dynamic IP for no reason occasionally triggers various DDOS protections schemes.
Re: FFmpeg 8.0 adds Whisper support
#178I tried several times to get this into a reasonable shape, but all have been failures. If anyone has pointers I really appreciate it.
Re: FFmpeg 8.0 adds Whisper support
#179Earlier quoted context omitted.
The other problem with burned-in subtitles is you can't change the language.
True, but (as someone who not infrequently has to rewind content on just about all streaming apps because it decided one particular subtitle only needed to be display for less than 200ms this time around) sometimes burned-in seems like a good idea. I don't understand why the problem seems so pervasive (I've seen it on Netflix, Viki, and Apple TV, at least) and so transient.
Re: FFmpeg 8.0 adds Whisper support
#180Earlier quoted context omitted.
I solved it by generating English subtitles, then passing those to an LLM in chunks that are ~20 entries in size. Include preceding and following subtitles as context for better translation. Make sure to replace the timestamps with simple integer ids, because LLMs like to mangle those, no matter how hard you prompt. I could share a python script that is working pretty reliably for me.
I'd love to see that script, do you have a link?