-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support/FR: Put transcription in kill ring #14
Comments
Not by default, the range of things people want is too varied for me to accommodate. But it's possible if you add custom logic to post process hook. Please load the latest commit and try this: (setq whisper-insert-text-at-point nil) ;; optional but sensible to disable live marker
(add-hook 'whisper-post-process-hook
(lambda ()
(kill-region (point-min) (point-max)))) |
For those interested, I've written the following (Bash) script to do exactly what OP wants, from anywhere in the OS (Linux) :)
Very handy to add "VoiceTyping" to Firefox, LibreOffice, Emacs, Vim, etc. Unfortunately, it is very rough and might fail in some cases (best solution in this case is to remove all my temp files from Unfortunately, I don't have time to improve it. But feel free to use it, modify/rewrite it (in a better language/format), make a beautiful GUI (Gnome/Palsma applet?), packaging/distributing it in a better format (GitHub, package, etc.), Just mention this issue if you do so that people know where it comes from :) Actual work is done in Whisper itself, so let's say my work is worth a C0 license ;), but if it could help/inspire others, you're welcome!
|
Is it possible to transcribe text and get it as if it was yanked?
The text was updated successfully, but these errors were encountered: