blob: 96f57c6a5c18ccf946f2e8e9c68d37995f2baeea (
plain) (
blame)
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
|
;;; emms-setup.el --- Setup script for EMMS
;; Copyright (C) 2005, 2006 Free Software Foundation, Inc.
;; Author: Yoni Rabkin <yonirabkin@member.fsf.org>
;; Keywords: emms setup multimedia
;; This file 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.
;; This file 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, 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)
(defun emms-minimalistic ()
"An Emms setup script.
Invisible playlists and all the basics for playing media."
(require 'emms-source-file)
(require 'emms-player-simple)
(require 'emms-player-mplayer))
(defun emms-standard ()
"An Emms setup script.
Everything included in the `emms-minimalistic' setup, the Emms
interactive playlist mode and reading information from tagged
audio files."
;; include
(emms-minimalistic)
;; define
(require 'emms-playlist-mode)
(require 'emms-info)
(require 'emms-info-mp3info)
(require 'emms-info-ogginfo)
;; 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))
(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-playlist-sort))
;; setup
(emms-mode-line 1)
(emms-mode-line-blank)
(emms-lyrics-enable)
(emms-playing-time-enable))
(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))
(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
|