.TH "Music Player Command" 1 .SH "NAME" mpc \- Program for controlling Music Player Daemon (MPD) .SH "SYNOPSIS" .B mpc .RI [ options ] .I .RI [ ] .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 command is given, the current status is printed (same as 'mpc status'). .SH "OPTIONS" .TP .BI -f,--format .br Configure the format of song display for status and the playlist. The metadata delimiters are: .br %name% Unknown (doesn't produce output) .br %artist% Artist file tag .br %album% Album file tag .br %albumartist% Album Artist file tag .br %composer% Composer file tag .br %title% Title file tag .br %track% Track file tag .br %time% Duration of file .br %file% Path of file, relative to mpd's `music_directory` variable .br %position% Playlist track number .br The [] operator is used to group output such that if no metadata delimiters 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 --wait .br Wait for operation to finish (e.g. database update). .TP .BI -q,--quiet,--no-status .br Prevents the current song status from being printed on completion of some of the commands. .TP .BI -v,--verbose .br Verbose output. .TP .BI -h,--host The host to connect to; if not given, the value of the environment variable MPD_HOST is checked before defaulting to localhost. This default can be changed at compile-time. To use a password, provide a value of the form "password@host". If you specify an absolute path, mpc attempts a connection via Unix Domain Socket. .TP .BI -p,--port The port to connect to; if not given, the value of the environment variable MPD_PORT is checked before defaulting to 6600. This default can be changed at compile-time. .br .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 insert The insert command works similarly to .B add except it adds song(s) after the currently playing one, rather than at the end. .TP .B clear Empties playlist. .TP .B crop Remove all songs except for the currently playing song. .TP .B current [--wait] Show the currently playing song With --wait, mpc waits until the song changes (or until playback is started/stopped) before it queries the current song from the server. .TP .B crossfade [] Gets and sets the current amount of crossfading between songs (0 disables crossfading). .TP .B mixrampdb [] Gets and sets the volume level at which songs with MIXRAMP tags will be overlapped. This disables the fading of the crossfade command and simply mixes the songs. -50.0 will effectively remove any gaps, 0.0 will mash tracks together. The amount of overlap is limited by the audio_buffer_size MPD configuration parameter. .TP .B mixrampdelay [] +Gets and sets the current amount of extra delay added to the value computed from the MIXRAMP tags. (A negative value disables overlapping with MIXRAMP tags and restores the previous value of crossfade). .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 idle [events] Waits until an event occurs. Prints a list of event names, one per line. See the MPD protocol documentation for further information. If you specify a list of events, only these events are considered. .TP .B idleloop [events] Similar to "idle", but re-enters "idle" state after events have been printed. If you specify a list of events, only these events are considered. .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 position 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 replaygain [] Sets the replay gain mode. Without arguments, it prints the replay gain mode. .TP .B single Toggle single mode if state ("on" or "off") is not specified. .TP .B consume Toggle consume 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 substrings in song tags. 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 find [ ]... Same as search, but tag values must match s exactly instead of doing a substring match. .TP .B findadd [ ]... Same as find, but add the result to the current playlist instead of printing them. .TP .B list [ ]... Return a list of all tags of given tag . Optional search s/s limit results in a way similar to search. .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 [--wait] [] Scans for updated files in the music directory. The optional parameter (relative to the music directory) may limit the scope of the update. With --wait, mpc waits until MPD has finished the update. .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. .TP .B channels List the channels that other clients have subscribed to. .TP .B sendmessage Send a message to the specified channel. .TP .B waitmessage Wait for at least one message on the specified channel. .TP .B subscribe > Subscribe to the specified channel and continuously receive messages. .SH "ENVIRONMENT VARIABLES" All environment variables are overridden by any values specified via command line switches. .IP MPD_HOST Specifies the hostname of the mpd server. This can be a hostname, IP address or an absolute path. If it is an absolute path, mpc will use Unix Domain Sockets instead of TCP/IP. If the server requires a password, it can be specified using password@host in the MPD_HOST variable. .IP MPD_PORT Specifies the port the mpd server is listening on. .SH "EXAMPLES" .TP .br For useful examples of mpc use in playlist parsing, see mpd-m3u-playlist.sh and mpd-pls-playlist.sh. .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 environment variables (LC_CTYPE only affects character handling). .SH "SEE ALSO" mpd(1) .SH "AUTHOR" See http://git.musicpd.org/cgit/master/mpc.git/plain/AUTHORS