Giter Club home page Giter Club logo

simple-mpc's Introduction

simple-mpc http://melpa.org/packages/simple-mpc-badge.svg

A GNU Emacs major mode that acts as a front end to mpc. ./screenshot.png

Requirements

Installation

MELPA

The easiest way to install is through MELPA.

To do this add MELPA to your package-archives list if you have not yet done so:

(require 'package) ;; You might already have this line
(add-to-list 'package-archives
             '("melpa" . "http://melpa.org/packages/"))
(package-initialize) ;; You might already have this line

Then install the package through either M-x list-packages or by just running M-x package-install simple-mpc.

Manual

  • Clone the repository
  • Add it to your emacs init:
(add-to-list 'load-path "path/to/simple-mpc")
(require 'simple-mpc)

Usage

Quickstart

Start with M-x simple-mpc. The rest of the keybindings now appear in a buffer. Configuration can be done with M-x customize-group <RET> simple-mpc. Viewing the current playlist and querying the database is done with c and s respectively. Most commands (like simple-mpc-query-add and simple-mpc-delete) respect the region.

Structure

Simple-mpc consists of three ‘views’, two of which have their own minor mode that implements specific extra functionality:

viewmajor modeminor mode
mainsimple-mpc-mode/
querysimple-mpc-modesimple-mpc-query-mode
current playlistsimple-mpc-modesimple-mpc-current-playlist-mode

simple-mpc-mode is always active and contains the most common bindings. Additional functionality is added with minor modes. Someone who does not like the interface can use simple-mpc-query-mode and simple-mpc-current-playlist-mode directly.

Bindings

Bindings can be viewed with describe-mode (C-h m) but are listed below for completeness:

simple-mpc-mode

keyfunction
tsimple-mpc-toggle
nsimple-mpc-next
psimple-mpc-prev
fsimple-mpc-seek-forward
bsimple-mpc-seek-backward
csimple-mpc-view-current-playlist
Csimple-mpc-clear-current-playlist
Ssimple-mpc-shuffle-current-playlist
lsimple-mpc-load-playlist
ssimple-mpc-query
qsimple-mpc-quit

simple-mpc-query-mode

keyfunction
qsimple-mpc-query-quit
Ssimple-mpc-query-sort
<return>simple-mpc-query-add
<S-return>simple-mpc-query-add-and-play

simple-mpc-current-playlist-mode

keyfunction
dsimple-mpc-delete
qsimple-mpc-current-playlist-quit
<return>simple-mpc-play-current-line

Configuration

Configuring simple-mpc can be done entirely through the simple-mpc customization group (M-x customize-group simple-mpc<RET>).

When using Mopidy as a server setting simple-mpc-playlist-format is recommended, the default output from mpc search won’t be very descriptive otherwise. The following configuration works well mopidy (note that the whitespace between the metadata delimiters and the separator itself are TAB characters (C-q <TAB>), not spaces):

(custom-set-variables
...
 '(simple-mpc-playlist-format "%artist%	%album%	%title%	%file%")
 '(simple-mpc-table-separator "	")
...)

History

This mode was inspired by mingus written by Niels Giesen and parts of the interface were inspired by mu4e written by Dirk-Jan C. Binnema. I used mingus for > 4 years and was mostly happy with it, but occasionally there were bugs and interface choices that I disagreed with. After looking through the source code in an attempt to fix these issues I came to the conclusion that it would be better to implement my own mode. A big reason for this decision was the fact that mingus uses its own MPD library implementation called libmpdee.el, which I expect contain some obscure bugs. I think it is a better choice to instead take advantage of mpc, a small program that is maintained by MPD developers and implements more than libmpdee.el. On top of that it makes the major mode much smaller and easier to maintain. Currently simple-mpc consists of ~300 LOC versus ~5000 LOC for mingus (mingus does have more features though).

GNU Emacs also contains mpc.el written by Stefan Monnier. It’s interesting but wasn’t really what I was looking for, partly because of its interface (inspired by Rhythmbox), and partly because it’s not particularly well documented.

Todo

  • add a way to combine multiple search terms e.g. mpc search artist a album b

simple-mpc's People

Contributors

jorenvo avatar seanfarley avatar madand avatar josephmturner avatar milouse avatar xuchunyang avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.