;;; emacspeak-emms.el --- Speech-enable EMMS Multimedia UI ;;; $Id$ ;;; $Author$ ;;; Description: Emacspeak extension to speech-enable EMMS ;;; Keywords: Emacspeak, Multimedia ;;{{{ LCD Archive entry: ;;; LCD Archive Entry: ;;; emacspeak| T. V. Raman |raman@cs.cornell.edu ;;; A speech interface to Emacs | ;;; $Date$ | ;;; $Revision: 4150 $ | ;;; Location undetermined ;;; ;;}}} ;;{{{ Copyright: ;;; Copyright (C) 1995--2004 T. V. Raman ;;; All Rights Reserved. ;;; ;;; This file is not part of GNU Emacs, but the same permissions apply. ;;; ;;; GNU Emacs is free software; you can redistribute it and/or modify ;;; it under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 2, or (at your option) ;;; any later version. ;;; ;;; GNU Emacs is distributed in the hope that it will be useful, ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Emacs; see the file COPYING. If not, write to ;;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. ;;}}} ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;{{{ Introduction ;;; Commentary: ;;;Speech-enables EMMS --- the Emacs equivalent of XMMS ;;; See ;;; http://savannah.gnu.org/project/emms ;;; EMMS is under active development, ;;; to get the current CVS version, use Emacspeak command ;;; M-x emacspeak-cvs-gnu-get-project-snapshot RET emms RET ;;; ;;; Code: ;;}}} ;;{{{ required modules (require 'emacspeak-preamble) ;;}}} ;;{{{ module emms: (defun emacspeak-emms-speak-current-track () "Speak current track." (interactive) (message (cdr (assoc 'name (emms-playlist-current-track))))) (loop for f in '(emms-next emms-next-noerror emms-previous) do (eval `(defadvice ,f (after emacspeak pre act comp) "Speak track name." (when (interactive-p) (emacspeak-auditory-icon 'select-object))))) ;;; these commands should not be made to talk since that would interferes ;;; with real work. (loop for f in '(emms-start emms-stop emms-sort emms-shuffle emms-random) do (eval `(defadvice ,f (after emacspeak pre act comp) "Provide auditory icon." (when (interactive-p) (emacspeak-auditory-icon 'select-object))))) (loop for f in '(emms-playlist-first emms-playlist-last emms-playlist-mode-first emms-playlist-mode-last) do (eval `(defadvice ,f (after emacspeak pre act comp) "Provide auditory feedback." (when (interactive-p) (emacspeak-auditory-icon 'large-movement) (emacspeak-speak-line))))) ;;}}} ;;{{{ Module emms-streaming: (declaim (special emms-stream-mode-map)) (defadvice emms-stream-mode (after emacspeak pre act comp) "Update keymaps." (define-key emms-stream-mode-map "\C-e" 'emacspeak-prefix-command)) (defadvice emms-stream-delete-bookmark (after emacspeak pre act comp) "Provide auditory feedback." (when (interactive-p) (emacspeak-auditory-icon 'delete-object) (emacspeak-speak-line))) (defadvice emms-stream-save-bookmarks-file (after emacspeak pre act comp) "Provide auditory feedback." (when (interactive-p) (emacspeak-auditory-icon 'save-object) (message "Saved stream bookmarks."))) (loop for f in '(emms-streams emms-stream-quit emms-stream-popup emms-stream-popup-revert emms-playlist-mode-go ) do (eval `(defadvice ,f (after emacspeak pre act comp) "Provide auditory feedback." (when (interactive-p) (emacspeak-speak-mode-line))))) (loop for f in '(emms-stream-next-line emms-stream-previous-line) do (eval `(defadvice ,f (after emacspeak pre act comp) "Provide auditory feedback." (when (interactive-p) (emacspeak-speak-line))))) (defadvice emms-playlist-mode-bury-buffer (after emacspeak pre act) "Announce the buffer that becomes current." (when (interactive-p) (emacspeak-auditory-icon 'select-object) (emacspeak-speak-mode-line ))) ;;}}} (provide 'emacspeak-emms) ;;{{{ end of file ;;; local variables: ;;; folded-file: t ;;; byte-compile-dynamic: t ;;; end: ;;}}}