down home radio show » The End of the World Banjo Band

down home radio show » Various Field Recordings
Anthology Film Archives – New York City 12/8/07:

This show was after a screening of the film “Bound to Lose” which is a GREAT documentary about The Holy Modal Rounders. “The End of the World Banjo Band” is a current project by Peter Stampfel of The Holy Modal Rounders. It’s an all banjo band featuring Peter Stampfel, John Cohen (of the New Lost City Ramblers), Jeannie Scofield, Walker Shepard and Down Home Radio’s own Eli Smith. Faced with the end of the world, seemingly the only option is actually to create an all-banjo-band. The band has 5-string banjos, banjo-mandolin, and 6-string banjo-guitar.

The End of the World Banjo Band Live!

whoa, I won something!

My strategy of dropping off my business card at every trade show booth that promises quality swag paid off. I just received an MP3 player from Genivar – thanks, folks!

It’s a weird little unit. Looks almost identical to a nano, but is your plain-vanilla USB mass storage device – something that Apple could learn from, but they’re in the business of selling players tied to iTunes. It also has a standard USB connector for days transfer and charging – Apple and iRiver please note.

It seems it’s an S1 type player, so can play videos in its own weird format. It also has a voice recorder, which again records in its own special format (likely some hacked version of GSM).

It will be fun playing with it.

Update: Looks like it’s an ATJ-2135 Actions Semiconductor player of some kind. It can record in ADPCM wav (which sox can convert), or its own weird ACT format (which can be converted using this Windows-only program).

Casper and The Cookies – Lee’s Palace, Toronto – 20 February 2007

Casper and The Cookies – Lee’s Palace, Toronto – 20 February 2007
It was Jason‘s birthday …

  1. Sid from Central Park
  2. Kiss a Friend
  3. Barking in the Garden of Ill Repute
  4. Neo Dada Hey Day
  5. Sea Fingers
  6. Kroetenwanderung
  7. The Optimist’s Credo
  8. My Heart is in my Head
  9. Learn How to Disappear
  10. Hey Mr. Superstar
  11. Sweet Pea

If you must stream these, here are the playlists: m3u | xspf.

Update: this show is now available on the Internet Archive: Details: Casper and the Cookies Live at Lee’s Palace on 2007-02-20.

The Apples in Stereo – Lee’s Palace, Toronto – 20 February 2007

In haste: The Apples in Stereo – Lee’s Palace, Toronto – 20 February 2007
(now updated to include better MP3s)

  1. (intro)
  2. Go
  3. Please
  4. Can You Feel It?
  5. The Rainbow
  6. Energy
  7. Strawberryfire
  8. Radiation
  9. Do You Understand?
  10. Open Eyes
  11. I Can’t Believe
  12. (apples in stereo mini-theme)
  13. Skyway
  14. (mini theme/tuning)
  15. Motorcar
  16. Tin Pan Alley
  17. Sun Is Out
  18. Same Old Drag
  19. (theme interlude)
  20. What’s the #?
  21. Ruby
  22. (encore intro)
  23. Play Tough
  24. Baroque

spiff with a silent X

I’ve been playing with XSPF, mostly so I can use the XSPF Web Music Player. There’s a Perl API for working with XSPF (XML::XSPF) which works well, but is extremely short on documentation.

Creating a playlist with XML::XSPF is pretty logical: create a new track object for each new track, then feed an array of these tracks into the playlist object. It took me a couple of hours of fiddling about (and much use of Data::Dumper::Simple, the plain man’s guide to tortuous data structures) to find that out.

The end result is this:
id32xspf – create XSPF playlist to stdout from a list of MP3s with ID3v2 tags.
It’s intended for use on a local directory of MP3s, which will subsequently be uploaded to a website. It uses MP3::Info to do the tag work.
It has some limitations:

  • every file must have ID3v2 tags.
  • it doesn’t handle file:// locations at all well, as their syntax is system-dependent. You’ll probably have to use the --urlbase option. For example, for Unix systems for local files in the current directory, I find -u file://`pwd`/ works well.
  • it doesn’t include track numbers, as I didn’t know that XSPF supported them.
  • it doesn’t create track artwork links, as this isn’t included in ID3 data.

One slightly amusing caveat about the XSPF Web Music Player is that it doesn’t understand the rate of some of lame‘s more amusing VBR presets. If you feed it files from the voice preset (56kbit, mono, resampled to 32000Hz), the results sound like Pinky & Perky

the late b.p. helium, live at The Boat, Toronto — 28 June 2006

  1. (intro)
  2. crying*
  3. reminder to self
  4. they broke the speed of light
  5. fela*
  6. i tried to make it with you
  7. (banter)
  8. bluebeard
  9. rabbit’s ear
  10. the curse of the trial
  11. raisa raisa
  12. the weeping soul

*: These short titles are taken from the setlist. I don’t have their full names.

Info page: the late b.p. helium, The Boat — 28 June 2006, which also includes a link to FLACs.

iPod Shuffle: meh

There’ve been a couple of times that my 256MB USB key wasn’t quite big enough, so I was in the market for a 1GB unit. Since the iPod Shuffle was only slightly more expensive than a plain memory key, I thought it would be a good purchase.

Um, wrong. While it’s undoubtedly a decent (if slightly portly) USB key, it has huge deficiencies as a music player:

  • you can’t skip to the next album in the play list.
  • shuffle mode seems more like ‘play a few songs out of order from the same album until you manually skip to something different’.
  • why is my music hidden away in weirdly-named files?
  • iTunes doesn’t always sync all of the tunes in the playlist, leaving you with missing albums.

For me, I think the most the Shuffle will be is a way of listening to the couple of albums I’ve bought on the weekend. It is small, light, and sounds pretty reasonable, but it won’t replace my iRiver H120 for musical goodness.

King Cutler

I’m hosting the MP3s of King Cutler, the 1990 radio series featuring Ivor Cutler, Phyllis King, and many others.

Update, May 2008: actually no, I’m not. Jeremy Cutler asked me to remove them.

batch renaming iTunes directories

In partial response to the Ask Metafilter question “How can I rename my music folders on my Mac based on ID3 tags?“:

#!/bin/bash
# itunes_sanity.sh - fix dir names created by iTunes
# only works for mp3s, and not actually tested on a Mac
# created by scruss on Sun Sep 4 22:05:00 EDT 2005

find "$@" -type d -mindepth 1 | while read directory
do
  artistdir=$(dirname "$directory")
  firstfile=$( find "$directory" -type f -iname '*.mp3' | head -n1 )
  year=$( id3info "$firstfile" | egrep ' TYE ' | sed 's/=== TYE (Year): //; s/[^0-9]*//;' )
  album=$( id3info "$firstfile" | egrep ' TAL ' | sed 's,=== TAL (Album/Movie/Show title): ,,;' )
  echo mv \'$directory\' \'$artistdir/\[$year\] $album\'
done

So if you were in the terminal, in your music library (one up from the individual artist directories), and you did:

itunes_sanity.sh Dan\ Jones Tripping\ Daisy

you’d get:

mv 'Dan Jones/Get Sounds Now' 'Dan Jones/[2005] Get Sounds Now'
mv 'Dan Jones/One Man Submarine' 'Dan Jones/[2003] One Man Submarine'
mv 'Tripping Daisy/Jesus Hits Like the Atom Bomb' 'Tripping Daisy/[1998] Jesus Hits Like the Atom Bomb'

If that looks okay, run the output through the shell:

itunes_sanity.sh Dan\ Jones Tripping\ Daisy | sh

and all should be well.

You’ll need id3lib, which is probably most easily installed from Fink. Also, this only works for mp3 files; I can’t grok the tag info for AAC files. And finally, this might go seriously screwy on weird characters in filenames. You know my feelings on that …