1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
|
;;; emms-setup.el --- Setup script for EMMS
;; Copyright (C) 2005, 2006, 2007 Free Software Foundation, Inc.
;; Author: Yoni Rabkin <yonirabkin@member.fsf.org>
;; Keywords: emms setup multimedia
;; This file is part of EMMS.
;; EMMS 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 3, or (at your option)
;; any later version.
;; EMMS 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 EMMS; see the file COPYING. If not, write to the
;; Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
;; Boston, MA 02110-1301, USA.
;;; Commentary:
;; This file provides the `emms-setup' feature. With `emms-setup' we
;; can setup Emms with different features enabled. The use of this
;; feature is documented in the Emms manual which is distributed with
;; Emms.
;;
;; The use this feature we can invoke (for example):
;;
;; (require 'emms-setup)
;; (emms-all)
;;
;; The first command loads the feature into Emacs and the second
;; chooses the `emms-all' level.
;;; Code:
(require 'emms)
(defgroup emms-setup nil
"*The Emacs Multimedia System setup utility."
:prefix "emms-setup"
:group 'multimedia)
(defcustom emms-setup-default-player-list
'(emms-player-mpg321
emms-player-ogg123
emms-player-mplayer-playlist
emms-player-mplayer)
"*Default list of players for emms-setup."
:group 'emms-setup
:type 'list)
;;;###autoload
(defun emms-minimalistic ()
"An Emms setup script.
Invisible playlists and all the basics for playing media."
(require 'emms-source-file)
(require 'emms-source-playlist)
(require 'emms-player-simple)
(require 'emms-player-mplayer))
;;;###autoload
(defun emms-standard ()
"An Emms setup script.
Everything included in the `emms-minimalistic' setup, the Emms
interactive playlist mode, reading information from tagged
audio files, and a metadata cache."
;; include
(emms-minimalistic)
;; define
(require 'emms-playlist-mode)
(require 'emms-info)
(require 'emms-info-mp3info)
(require 'emms-info-ogginfo)
(require 'emms-cache)
;; setup
(setq emms-playlist-default-major-mode 'emms-playlist-mode)
(add-to-list 'emms-track-initialize-functions 'emms-info-initialize-track)
(add-to-list 'emms-info-functions 'emms-info-mp3info)
(add-to-list 'emms-info-functions 'emms-info-ogginfo)
(setq emms-track-description-function 'emms-info-track-description)
(when (fboundp 'emms-cache) ; work around compiler warning
(emms-cache 1)))
;;;###autoload
(defun emms-all ()
"An Emms setup script.
Everything included in the `emms-standard' setup and adds all the
stable features which come with the Emms distribution."
;; include
(emms-standard)
;; define
(eval-and-compile
(require 'emms-mode-line)
(require 'emms-streams)
(require 'emms-lyrics)
(require 'emms-playing-time)
(require 'emms-player-mpd)
(require 'emms-player-xine)
(require 'emms-playlist-sort)
(require 'emms-browser)
(require 'emms-lastfm))
;; setup
(emms-mode-line 1)
(emms-mode-line-blank)
(emms-lyrics 1)
(emms-playing-time 1))
;;;###autoload
(defun emms-devel ()
"An Emms setup script.
Everything included in the `emms-all' setup and adds all the
features which come with the Emms distribution regardless of if
they are considered stable or not. Use this if you like living
on the edge."
;; include
(emms-all)
;; define
(require 'emms-metaplaylist-mode)
(require 'emms-stream-info)
(require 'emms-score)
(require 'emms-last-played)
(require 'emms-bookmarks)
(require 'emms-history)
(require 'emms-mark)
(require 'emms-i18n)
(require 'emms-tag-editor)
(require 'emms-volume)
;; setup
(add-hook 'emms-player-started-hook 'emms-last-played-update-current))
;;;###autoload
(defun emms-default-players ()
"Set `emms-player-list' to `emms-setup-default-player-list'."
(setq emms-player-list
emms-setup-default-player-list))
(provide 'emms-setup)
;;; emms-setup.el ends here
|