Enrico Pirani
2014-12-06 15:29:10 UTC
Hello,
I have a problem with Playlist from Music Player Daemon. When I try to
load the tracks in the playlist I have multiple copies of the same track
(3 copies). This is what appears: Loading Image...
On the left is the `browse` panel and on the right the `playlist`. As
you can see there are three copies of the same song. I don't know where
is the problem. This is my emms-setup
<!-- language: elisp -->
(setq exec-path (append exec-path '("/usr/local/bin")))
(require 'emms-setup)
(require 'emms-player-mplayer)
(emms-all)
(emms-default-players)
(setq emms-directory (concat user-emacs-directory "/emms"))
(setq emms-cache-file (concat user-emacs-directory "/emms/cache"))
(setq emms-source-file-default-directory "/Volumes/MyShare/Music/iTunes/Music/")
(emms-standard)
(emms-default-players)
(define-emms-simple-player mplayer '(file url)
(regexp-opt '(".ogg" ".mp3" ".wav" ".mpg" ".mpeg" ".wmv" ".wma"
".mov" ".avi" ".divx" ".ogm" ".asf" ".mkv" "http://" "mms://"
".rm" ".rmvb" ".mp4" ".flac" ".vob" ".m4a" ".flv" ".ogv" ".pls"))
"mplayer" "-slave" "-quiet" "-really-quiet" "-fullscreen")
(require 'emms-player-mpd)
(setq emms-player-mpd-server-name "localhost")
(setq emms-player-mpd-server-port "6600")
(setq emms-player-mpd-music-directory emms-source-file-default-directory)
(add-to-list 'emms-info-functions 'emms-info-mpd)
(add-to-list 'emms-player-list 'emms-player-mpd)
(require 'emms-volume)
(setq emms-volume-change-function 'emms-volume-mpd-change)
(require 'emms-browser)
(emms-browser-make-filter "all" 'ignore)
--
I have a problem with Playlist from Music Player Daemon. When I try to
load the tracks in the playlist I have multiple copies of the same track
(3 copies). This is what appears: Loading Image...
On the left is the `browse` panel and on the right the `playlist`. As
you can see there are three copies of the same song. I don't know where
is the problem. This is my emms-setup
<!-- language: elisp -->
(setq exec-path (append exec-path '("/usr/local/bin")))
(require 'emms-setup)
(require 'emms-player-mplayer)
(emms-all)
(emms-default-players)
(setq emms-directory (concat user-emacs-directory "/emms"))
(setq emms-cache-file (concat user-emacs-directory "/emms/cache"))
(setq emms-source-file-default-directory "/Volumes/MyShare/Music/iTunes/Music/")
(emms-standard)
(emms-default-players)
(define-emms-simple-player mplayer '(file url)
(regexp-opt '(".ogg" ".mp3" ".wav" ".mpg" ".mpeg" ".wmv" ".wma"
".mov" ".avi" ".divx" ".ogm" ".asf" ".mkv" "http://" "mms://"
".rm" ".rmvb" ".mp4" ".flac" ".vob" ".m4a" ".flv" ".ogv" ".pls"))
"mplayer" "-slave" "-quiet" "-really-quiet" "-fullscreen")
(require 'emms-player-mpd)
(setq emms-player-mpd-server-name "localhost")
(setq emms-player-mpd-server-port "6600")
(setq emms-player-mpd-music-directory emms-source-file-default-directory)
(add-to-list 'emms-info-functions 'emms-info-mpd)
(add-to-list 'emms-player-list 'emms-player-mpd)
(require 'emms-volume)
(setq emms-volume-change-function 'emms-volume-mpd-change)
(require 'emms-browser)
(emms-browser-make-filter "all" 'ignore)
--