blakesmith / djmpc
- Source
- Commits
- Network (0)
- Issues (0)
- Downloads (5)
- Wiki (1)
- Graphs
-
Branch:
master
djmpc /
| name | age | message | |
|---|---|---|---|
| |
.gitignore | ||
| |
LICENSE | ||
| |
README.markdown | ||
| |
djmpclib/ | ||
| |
setup.py | ||
| |
support/ |
README.markdown
djmpc - An ncurses mpd client with cuesheet support.
SCREENSHOTS


REQUIREMENTS
- Python 2.5 or greater
- ncurses
- A working version of mpd
INSTALLATION
- Untar the archive by running
tar xzvf djmpc-$versionnumber.tar.gz. - Run
python setup.py installto install the package into your python path. - A basic configuration file can be found in '/usr/share/djmpc/djmpc_config.py', Copy this file to ~/.djmpc. Edit the values in ~/.djmpc/djmpc_config.py to reflect your setup. 'music_directory' should point to the locally accessible mpd music library. If you're using djmpc with a server that's not located on the client computer, you can specify 'cue_diretory', which is where you can drop all cuesheets for tracks located on the server. Note that the client MUST have local access to the cuesheet files in some way in order to display cuesheet data.
USAGE
djmpc has two basic modes: command line mode, and ncurses mode.
- Command Line mode:
The command line mode has basic control over the server, most of which can also be found in another mpd client. The ones that will be most interesting are:
% djmpc cuelist
This lists all the track and index information for the cuesheet on the currently playing track.
% djmpc cueseek <int>
Seeks to a specific track within the cuesheet. EG - 'djmpc cueseek 24' would seek to the 24th index on the currently playing songs cuesheet.
- ncurses mode:
A display to output server data, as well as cuesheet/track information. To activate:
% djmpc nc
At the moment the only thing you can do in this display is:
't' - Toggle play/pause
'q' - Quit the client
Other relevant commands can be seeing by typing:
% djmpc help
AUTHOR
djmpc is written by:
Blake Smith blakesmith0@gmail.com

