Last active
November 5, 2018 12:50
-
-
Save ShingoFukuyama/7986889 to your computer and use it in GitHub Desktop.
Utilizing `say' command which Mac OSX has for Emacs.Region lines and then `M-x osx-say' to make OSX speak.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; Region lines and then `M-x osx-say' to make OSX speak. | |
;; Adjust speak speed | |
(setq osx-say-speed 180) | |
;; Change voice | |
;; Kathy, Vicki, Victoria, Alex, Bruce, Fred | |
(setq osx-say-voice "Alex") | |
(setq osx-say-buffer "*osx say*") | |
(defun osx-say-stop () | |
(interactive) | |
(when (get-buffer osx-say-buffer) | |
(kill-buffer osx-say-buffer))) | |
(defun osx-say (&optional $word $speed) | |
"Utilize `say' command that Mac OSX has." | |
(interactive) | |
(unless (executable-find "say") | |
(error (message "`say' command not found"))) | |
(osx-say-stop) | |
(cond ($word $word) | |
(mark-active | |
(setq $word (buffer-substring-no-properties | |
(region-beginning) (region-end)))) | |
((setq $word (thing-at-point 'word))) | |
(t (setq $word (read-string "word: ")))) | |
(mapc (lambda ($r) | |
(setq $word (replace-regexp-in-string (car $r) (cdr $r) $word))) | |
(list ;;'("'" . "\\\\'") | |
'("\"" . "\\\\\"") | |
'("?" . "\\\\?") | |
'("\n" . " ") | |
'("\(" . "\\\\(") | |
'("\)" . "\\\\)") | |
'("\\[" . "\\\\[") | |
'("\\]" . "\\\\]") | |
'("\;" . "\\\\;") | |
'("\&" . "\\\\&") | |
'("\|" . "\\\\|"))) | |
(save-window-excursion | |
(start-process "OSX Say" osx-say-buffer | |
"say" "-v" osx-say-voice "-r" | |
(number-to-string (or $speed osx-say-speed)) $word))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment