Add MPD and replay gain posts.
authorW. Trevor King <wking@drexel.edu>
Sat, 11 Dec 2010 23:35:39 +0000 (18:35 -0500)
committerW. Trevor King <wking@drexel.edu>
Sat, 11 Dec 2010 23:35:39 +0000 (18:35 -0500)
posts/MPD.mdwn [new file with mode: 0644]
posts/MPD_playlist_duration.mdwn
posts/Replay_gain.mdwn [new file with mode: 0644]

diff --git a/posts/MPD.mdwn b/posts/MPD.mdwn
new file mode 100644 (file)
index 0000000..625c507
--- /dev/null
@@ -0,0 +1,13 @@
+[MPD][] is a wonderful little music player daemon.  It's pretty easy
+to use, but there are always tricks to make things a bit more
+comfortable.
+
+* Calculating [[MPD playlist duration]].
+* Group-writable playlists with [[ACL]].
+* [[Replay gain]].
+
+[MPD]: http://mpd.wikia.com/
+
+[[!tag tags/fun]]
+[[!tag tags/linux]]
+[[!tag tags/tools]]
index dc38dae00a4e3a5706f5a57cfedb6fb3919e9cbd..4177460694cf2d63a1b45461dcb37b29ebe3d89c 100644 (file)
@@ -1,4 +1,4 @@
-I use [MPD][] to organize and play my music, since it's a pretty thin
+I use [[MPD]] to organize and play my music, since it's a pretty thin
 layer over the directory structure I'd been using before.  MPD's
 playlists are stored in `/var/lib/mpd/playlists/` as [M3U][] files
 (one filename per line), so it easy to build your own tools to work
@@ -15,7 +15,6 @@ Note that, unfortunately, `%j` returns the day of the year in the
 range `[001,366]`, so an empty playlist would return `001 00:00:00`,
 not the `000 00:00:00` I'd like.  Oh well.
 
-[MPD]: http://mpd.wikia.com/
 [M3U]: http://en.wikipedia.org/wiki/M3U
 [post]: http://repura.livejournal.com/59403.html?thread=156683
 
diff --git a/posts/Replay_gain.mdwn b/posts/Replay_gain.mdwn
new file mode 100644 (file)
index 0000000..da97f47
--- /dev/null
@@ -0,0 +1,14 @@
+Some songs are louder than others, and it's annoying to have to
+constantly tweak the volume knob to keep things at a reasonable level.
+Enter "replay gain".  You use a tool to go through your music and add
+tags marking how loud each song/album is, then you play them with
+something that understands the tags and adjusts the volume for you.
+Very convenient.  Robert Downes (Bobulous) has a [nice post with
+scripts for tagging FLAC files][post] (the heart of his scripts is
+`metaflac --add-replay-gain *.flac`).  Then just add
+
+    replaygain "album"
+
+to `/etc/mpd.conf` and restart `mpd`.  VoilĂ !
+
+[post]: http://www.bobulous.org.uk/misc/Replay-Gain-in-Linux.html