fix file name printing for too-recent files; more compact flac test error output
[soepkiptng.git] / README
blobd77a3d47a2f989eb608aab1e1346b38aa8c7a0a3
2                   Soepkip The Next Generation
3      ----------------------------------------------------
4              by Eric Lammerts <eric@lammerts.org>
7 Download:
8 ---------
9 https://github.com/eric321/soepkiptng
12 Features:
13 ---------
14 * file format support:
15   - MP3 (including id3/id3v2 tag reading, id3v2 tag writing)
16   - Ogg-Vorbis (including Vorbis comment reading/writing)
17   - flac (including Vorbis comment reading/writing)
18   - CD/DA (reading directly from CD, using cdparanoia)
19   - wav
20   - raw (headerless 44.1kHz/16bit/2ch/little-endian files)
21   - Video (everything supported by MPlayer: MPEG, AVI, ASF, WMV, Quicktime,
22     RealMedia and more)
23   - midi/mod (using TiMidity++)
24   - Shorten
25   - AC3
26   - MP4 (AAC, ALAC)
27   - WMA & RealAudio (all formats that are supported by your mplayer)
28   - Musepack (SV7 only)
29 * supports playing Shoutcast streams (MP3 / Ogg Vorbis)
30 * supports playing back in 32-bit mode
31 * player uses real-time scheduling and memory locking for uninterrupted music
32   playback; zero silence period between two songs (very nice for consecutive
33   songs of a live cd).
34 * song information is kept in a MySQL database, but can be written back
35   to mp3 files (using ID3v2) or ogg/flac files (using vorbis comments) too.
36 * lyrics support; Lyrics can be entered manually or downloaded automatically
37   from http://www.purelyrics.com and http://www.lyricsdomain.com.
38   They can be read from and written to mp3 files using id3v2 tags.
39 * volume correction to avoid clipping
40 * plays from request queue; plays random songs if nothing is on the request
41   queue
42 * versatile web interface:
43   - supports browsing, searching, requesting songs,
44     killing current song, editing song information etc.
45   - very fast (thanks to mod_perl)
46   - configurable look (CSS style)
47   - tested with Netscape, Mozilla, Konqueror, Opera & MSIE.
48 * commandline interface
49 * partial emulation of a Music Player Daemon on port 6600
50   (http://www.musicpd.org/doc/protocol/), for use with Conky
51   (http://conky.sourceforge.net/)
54 Requirements:
55 -------------
56 * perl5
57 * mysql 3.22
58   (3.23 recommended; 3.22 cannot do case-insensitive regexps)
59 * perl modules:
60   - MP3::Tag
61   - MPEG::MP3Info
62   - CGI
63   - DBI
64   - DBD::mysql
65   - Compress::Zlib
66   - TermReadKey (optional)
67   - CDDB_get (optional)
68 * programs for decoding the various sound formats:
69   - mp3: madplay >= 0.15.0 (http://www.mars.org/home/rob/proj/mpeg/)
70   - midi/mod: TiMidity++ (http://www.goice.co.jp/member/mo/timidity/)
71   - wav, flac, ogg, ac3, aac, alac, shorten, ape: mplayer
72   - wav, flac, ogg, m4a: sox (optional)
73   - CD/DA: requires cdparanoia (http://www.xiph.org/paranoia/)
74   - Video: requires MPlayer (http://http://www.mplayerhq.hu/)
75 * programs for tag reading/writing:
76   - flac: metaflac
77   - ogg: ogginfo, vorbiscomment
79 The webinterface used to run under Apache using mod_perl, but I've switched
80 to running as a separate webserver. The Apache method may still work, but is
81 now completely untested.
83 Perl modules can be installed directly from CPAN by starting "perl -MCPAN
84 -e shell" (you must answer some configuration questions if you do this for
85 the first time) and typing "install Some::Module".
88 On a Debian or Ubuntu system you can install all the necessary software with
89 apt-get.
91 Package list:
92 - libcompress-zlib-perl
93 - libdbd-mysql-perl
94 - libmp3-tag-perl
95 - libmpeg-mp3info-perl or libmp3-info-perl
96 - libterm-readkey-perl    (optional)
97 - mysql-server
98 - madplay                 (for mp3 support)
99 - mplayer
100 - flac                    (for flac support; >= 1.04)
101 - vorbis-tools            (for Ogg-Vorbis support)
102 - libwww-perl
103 - cdparanoia              (optional; for CD-DA support)
104 - libcddb-get-perl        (optional; for CD-DA support)
107 Installation:
108 -------------
109 * compile the helper applications:
110   cd src; make; sudo make install
111   The binaries will be placed in the 'bin' subdirectory.
112 * create the database:
113   sudo mysql -u root < soepkiptng_create.my
114 * reload the grant tables:
115   sudo mysqladmin reload
116 * copy soepkiptng.conf.example to either:
117   - /etc/soepkiptng.conf
118   - ~/.soepkiptng.conf
119   - any file named in $SOEPKIPTNG_CONFIGFILE
120   (or edit soepkiptng.lib if you want a different location)
121 * edit the config file to taste
122 * make the directory /var/local/soepkiptng and make sure
123   it's writable for the user that will run soepkiptngd
124 * run soepkiptng_update to add songs to the database
125 * run soepkiptngd -d to start playing with debugging on.
126   If everything works alright, start it without -d to run it in the
127   background. Debugging output is then sent to
128   /var/local/soepkiptng/soepkiptng.err, which is automatically rotated if
129   the size reaches 64Kbyte. Make sure file permissions in
130   /var/local/soepkiptng are OK. If you sometimes run soepkiptngd as root and
131   sometimes as non-root you can expect problems.
132 * run soepkiptng_httpd -d to start the webinterface. By default it runs on
133   port 8888. 
134   If everything works alright, start it without -d to run it in the
135   background.
136 * for status display through conky, put something like this in your .conkyrc:
137     ${mpd_artist} - ${mpd_title} (${mpd_album}, \#${mpd_track}) ${mpd_elapsed}/${mpd_length}
138   If you don't want soepkiptngd to listen on port 6600, add mpd_port=0 to
139   the config file.
142 TODO:
143 -----
144 * write man pages for all scripts & executables
145 * better interface / web interface for 'see also' feature
146 * clean up Shoutcast support (separate table, multiple urls per name with
147   automatic fallback)
148 * lirc support (IR remote)
149 * play directly from urls
150 * smb support (playing/updating directly from Windoze shares)
151 * playlists/genres
152 * ripping integration
153 * multiple soepkiptng daemons & request queues
154 * remote playing using esd (Enlightenment Sound Daemon), http streaming or
155   similar stuff
156 * message input that will be played using a text-to-speech program
157 * user-level access control (limit access to database editing / song requests)
158 * improve docs
159 * make music format more modular; maybe support xmms plugins (well, they suck)
160 * silence before random songs
161 * fade-out/fade-in in pause/resume
162 * cleanup Xing VBR info detection (it's a quick hack now)
163 * scan VBR mp3s without Xing VBR header for length
164 * Ogg-Vorbis embedded songinfo support (reading/writing)
165 * cleanup resampling & mono->stereo conversion
166 * smooth transition between 2 songs (interpolation)
167 * synchronize update of statusfile with cdrplay
168 * CD-DA support: don't re-enter info into db every time you click "CD-DA"
169   maybe use persistent info and cddb disc_id?
174 Copyright:
175 ----------
176 soepkiptng is (c) copyright 2000-2010 Eric Lammerts <eric@lammerts.org>
178 This program is free software; you can redistribute it and/or modify
179 it under the terms of the GNU General Public License, version 2, as 
180 published by the Free Software Foundation.
182 This program is distributed in the hope that it will be useful,
183 but WITHOUT ANY WARRANTY; without even the implied warranty of
184 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
185 GNU General Public License for more details.
187 A copy of the GNU General Public License is available on the World Wide Web
188 at `http://www.gnu.org/copyleft/gpl.html'.  You can also obtain it by
189 writing to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
190 Boston, MA 02111-1307, USA.