all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Eric Abrahamsen <eric@ericabrahamsen.net>
To: help-gnu-emacs@gnu.org
Subject: Re: EMMS best practice, tag editing and fetching lyrics
Date: Wed, 23 May 2012 09:42:20 +0800	[thread overview]
Message-ID: <87zk8zd66b.fsf@ericabrahamsen.net> (raw)
In-Reply-To: 87r4ucawkr.fsf@gmx.co.uk

On Wed, May 23 2012, Johnny wrote:

> William Xu <william.xwl@gmail.com> writes:
>> Johnny <yggdrasil@gmx.co.uk> writes:
>

[...]

>>
>> I'm liking Mingus: it only does music, which is all I want, and it stays
>> aware of the global state of mpd (a 'g' is usually all it takes). I
>> don't like the browsing interface as well as EMMS (it's too tied to the
>> filesystem structure of your music library), but with ido-mode on it's
>> not bad at all.
>
> I have seen mingus mentioned and got a copy to test. 
>
> I read your discussion on the stumpwm list on mpd setup and have played
> around to achieve something similar. I haven't been very successful
> integrating mpd and stumpwm though and would be curious to understand
> your setup better. I currently use ncmpcpp and alsamixer bound to shortcuts for
> fast access, but as I mentioned in the original post, my main issue with
> ncmpcpp is that the keybindings are just awful.
>
> Emacs to create and edit playlists (and possibly tags and view lyrics)
> and stumpwm directly for play, pause, fwd, etc. would be great!

Yup, it's a pretty ideal setup. We're getting a wee bit off topic here,
but basically what I do is start mpd at boot time, so it's running
before X starts, and then I've got the following in my .stumpwmrc:

--8<---------------cut here---------------start------------->8---
(load-module "mpd")
(define-key *root-map* (kbd "m") '*mpd-map*)
(mpd-connect)

(defcommand PCM-volume-up () ()
  "Adjust PCM volume up"
  (run-shell-command "amixer set PCM 3+"))

(defcommand PCM-volume-down () ()
  "Adjust PCM volume down"
  (run-shell-command "amixer set PCM 3-"))

(define-key *top-map* (kbd "XF86AudioRaiseVolume") "PCM-volume-up")
(define-key *top-map* (kbd "XF86AudioLowerVolume") "PCM-volume-down")
(define-key *top-map* (kbd "XF86AudioPlay") "mpd-toggle-pause")
(define-key *top-map* (kbd "XF86AudioStop") "mpd-stop")
(define-key *top-map* (kbd "XF86AudioNext") "mpd-next")
(define-key *top-map* (kbd "XF86AudioPrev") "mpd-prev")
(define-key *top-map* (kbd "XF86AudioMute") "toggle-mute")
--8<---------------cut here---------------end--------------->8---

Only the first two lines are really necessary. If mpd is running at the
default 127.0.0.1:6600, this will do it. You can connect manually using
'C-t m x' (provided you're using the prefix above), and after that 'C-t
m C-h' to see all of stumpwm's mpd-module commands.

I use mpd with pulseaudio, but I can't imagine that would make any
difference.

Good luck,
E

-- 
GNU Emacs 24.1.50.2 (i686-pc-linux-gnu, GTK+ Version 2.24.10)
 of 2012-05-19 on pellet




  reply	other threads:[~2012-05-23  1:42 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <mailman.1426.1337528768.855.help-gnu-emacs@gnu.org>
2012-05-21  1:28 ` EMMS best practice, tag editing and fetching lyrics Stefan Monnier
2012-05-21  4:06   ` Eric Abrahamsen
2012-05-21 18:12     ` Johnny
2012-05-22  3:14       ` Eric Abrahamsen
2012-05-22 15:59         ` David Engster
2012-05-23  1:44           ` Eric Abrahamsen
2012-05-22 15:04       ` William Xu
2012-05-22 18:40         ` Johnny
2012-05-23  1:42           ` Eric Abrahamsen [this message]
2012-05-20 14:33 Johnny

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87zk8zd66b.fsf@ericabrahamsen.net \
    --to=eric@ericabrahamsen.net \
    --cc=help-gnu-emacs@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.