Thanks for your reply
William Xu <[EMAIL PROTECTED]> writes: > Jens Juul Christensen <[EMAIL PROTECTED]> writes: > > <snip> > > > http://sarg.kollektiv-hamburg.de/~forcer/darcs/emms/ > > > > Still I get the "Don't know how to play track..." error. Tried all > > types of setup I could find in the documentation, in here and Google, > > all gives the same error. > > Try `M-x toggle-debug-on-error' first, then show us the backtrace. > > Here's a sample minimal setup: > > (require 'emms-setup) > (emms-minimalistic) > > (setq emms-player-list '(emms-player-mplayer > emms-player-mplayer-playlist > emms-player-mpg321)) > > (setq emms-source-file-default-directory "~/music/songs") With this sample minimal output and debug on error switched on i get this output: Debugger entered--Lisp error: (error "Don't know how to play track: (*track* (type . file) (name . myfile.mp3))") signal(error ("Don't know how to play track: (*track* (type . file) (name . myfile.mp3))")) error("Don't know how to play track: %s" (*track* (type . file) (name . "myfile.mp3"))) (if (not player) (error "Don't know how to play track: %s" track) (funcall (emms-player-get player ...) track) (setq emms-player-playing-p player emms-player-paused-p nil) (run-hooks (quote emms-player-started-hook))) (let ((player ...)) (if (not player) (error "Don't know how to play track: %s" track) (funcall ... track) (setq emms-player-playing-p player emms-player-paused-p nil) (run-hooks ...))) (if emms-player-playing-p (error "A player is already playing") (let (...) (if ... ... ... ... ...))) emms-player-start((*track* (type . file) (name . "myfile.mp3"))) (if emms-player-playing-p nil (emms-player-start (emms-playlist-current-selected-track))) (unless emms-player-playing-p (emms-player-start (emms-playlist-current-selected-track))) emms-start() emms-source-play(emms-source-file "myfile.mp3") emms-play-file("myfile.mp3") * call-interactively(emms-play-file) execute-extended-command(nil) * call-interactively(execute-extended-command) I get this "Dont know how to play..." error no matter which version or setup in my .emacs I use. Jens > > > If I instead try to play a .ogg file I get this error and no music: > > > > save-excursion: Symbol's function definition is void: remove-overlays > > Hmm, seems `remove-overlays' is added in CVS Emacs. > > <snip> > > > Hope someone can help, EMMS seems to fit my needs for a music > > application perfectly... > > Yeah, it is. :-) > > -- > William _______________________________________________ Emms-help mailing list [email protected] http://lists.gnu.org/mailman/listinfo/emms-help
