.TH "Music Player Command" 1 .SH "NAME" mpc \- Program for controlling Music Player Daemon (MPD) .SH "SYNOPSIS" mpc [ ] .SH "DESCRIPTION" mpc is a client for MPD, the Music Player Daemon. mpc connects to a MPD and controls it according to commands and arguments passed to it. If no arguments are passed, current status is given. .SH "OPTIONS" .TP .BI --format .br Configure the format of song display for status and the playlist. The metadata delimeters are "%name%", "%artist%", "%album%", "%title%", "%track%", "%time%", and "%file%". The [] operator is used to group output such that if no metadata delimeters are found or matched between '[' and ']', then none of the characters between '[' and ']' are output. '&' and '|' are logical operators for and and or. '#' is used to escape characters. Some useful examples for format are: "%file%" and "[[%artist% - ]%title%]|[%file%]". This command also takes the following defined escape sequences: .br \\\\ - backslash .br \\a - alert .br \\b - backspace .br \\t - tab .br \\n - newline .br \\v - vertical tab .br \\f - form-feed .br \\r - carriage return .TP .BI --no-status .br Prevents the current song status from being printed on completion of some of the commands. .SH COMMANDS .TP .B add Adds a song from the music database to the playlist. Can also read input from pipes. Use "mpc ls | mpc add" to add all files to the playlist. .TP .B clear Empties playlist. .TP .B crop Remove all songs except for the currently playing song. .TP .B crossfade [] Gets and sets the current amount of crossfading between songs (0 disables crossfading). .TP .B del Removes a playlist number from the playlist. Can also read input from pipes (0 deletes the current playing song). .TP .B disable Disables the output, number is required. .TP .B enable Enables the output, number is required. .TP .B listall [] Lists from playlist. If no is specified, lists all songs. .TP .B load Loads as playlist. .TP .B ls [] Lists all files/folders in . If no is specified, lists all files in music directory. .TP .B lsplaylists Lists available playlists. .TP .B move Moves song at position to the postion in the playlist. .TP .B next Starts playing next song on playlist. .TP .B outputs Lists all available outputs .TP .B pause Pauses playing. .TP .B play Starts playing the song-number specified. If none is specified, plays number 1. .TP .B playlist Prints entire playlist. .TP .B prev Starts playing previous song. .TP .B random Toggle random mode if state ("on" or "off") is not specified. .TP .B repeat Toggle repeat mode if state ("on" or "off") is not specified. .TP .B rm Deletes a specific playlist. .TP .B save Saves playlist as . .TP .B search [ ]... Searches for songs where all of the given tag s match the given s. Any number of tag type and query combinations can be specified. Possible tag types are: artist, album, title, track, name, genre, date, composer, performer, comment, disc, filename, or any (to match any tag). .TP .B seek [+-][] or <[+-]<0-100>%> Seeks by hour, minute or seconds, hours or minutes can be omitted. If seeking by percentage, seeks within the current song in the specified manner. If a "+" or "-" is used, the seek is done relative to the current song position. Absolute seeking by default. .TP .B shuffle Shuffles all songs on the playlist. .TP .B stats Displays statistics about MPD .TP .B stop Stops playing. .TP .B toggle Toggles between play and pause. If stopped starts playing. Does not support start playing at song number (use play). .TP .B update [] Scans music directory for updates if no is specified. If one or more 's are specified, scans only those path's for updates. Can take input from a pipe. .TP .B version Reports the version of MPD. .TP .B volume [+-] Sets the volume to (0-100). If "+" or "-" is used, then it adjusts the volume relative to the current volume. .SH "ENVIRONMENT" .TP This section describes some environment variables that affect how mpc operates. .br MPD_HOST .br MPD_PORT .br By default, mpc connects to localhost:6600. This can be changed either at compile-time, or by exporting the MPD_HOST and MPD_PORT environment variables. .br To use a password with mpd, set MPD_HOST to password@host. .SH "EXAMPLES" .TP Here is a script to load and play m3u playlists (useful for mozilla): .br .br #!/bin/bash .br mpc clear .br cat $1 | mpc add .br mpc play .br .TP This script can be used to load and play pls playlists (again, useful for mozilla): .br .br #!/bin/bash .br mpc clear .br grep '^File[0-9]*' $1 | sed -e 's/^File[0-9]*=//' | mpc add .br mpc play .br .SH "BUGS" Report bugs on http://www.musicpd.org/mantis/ .SH "NOTE" Since MPD uses UTF\-8, mpc needs to convert characters to the charset used by the local system. If you get character conversion errors when you're running mpc you probably need to set up your locale. This is done by setting any of the LC_CTYPE, LANG or LC_ALL enviroment vatiables (LC_CTYPE only affects character handling). .SH "SEE ALSO" mpd(1) .SH "AUTHOR" See , for contributors to mpc