Done some music serving on youtube today. I think I got inspired by the Byrnes and Eno post of yesterday. Anyway, through some unexpected moments of inspiration I searched for one of my favorite German bands Gammalapagos and there are actually a couple of videos around of them playing live. Here is one of the tracks of their first album.
Brian Eno and I recently finished our first collaboration in about 30 years. The name of the new record is Everything That Happens Will Happen Today. For the most part, Brian did the music and I wrote some tunes, words and sang. It’s familiar but completely new as well. We’re pretty excited.
Cool thing is they only released it on the internet for now and the album is released in high quality DRM free MP3 and Flac. That almost is enough reason to buy it.
I somehow landed on last.fm to find they link to some Talking Heads youtube videos. Seeing Psycho Killer again, from the movie Stop making sense, brought back some sweet memories.
I visited the Arcade Fire concert in Cologne yesterday. What a fine band. I completely enjoyed the band an the show. Very impressing and inspiring. Here is a picture posted on flickr:
And here is the setlist
Keep the car running
No Cars go
Haiti
Black mirror
Intervention
Neon Bible(Extended version)
Windowsill
The well & the lighthouse
Crown of Love
Ocean of Noise
Tunnels(long version)
Power Out
Rebellion
————————————
My body is a cage
Wake Up
On the not so good side I can only say that the sound in the Palladium was awful. The sound guys forgot to turn on the microphone for Win a number of times. Apart from that they had a big problem with songs that had just a little bit more bass in them. Due to the fact that volumes were already at max the extra basses turned the Palladium into a big bowl of acoustic soup. That way at least three songs, including “Black Mirror”, got completely ruined. Thanks guys.
Every time I need to do this, I forget where I found it. This information is copied from here.
Vorbis ogg: vorbisgain -arfs *
mp3 (using mp3gain): find -type d -exec sh -c "mp3gain \"{}\"/*.mp3" \;
mp4 and mp3: find -type d -exec sh -c "mp3gain \"{}\"/*.mp3" \;
mpc: find -type d -exec sh -c "mp3gain \"{}\"/*.mpc" \;
flac: just use the –replay-gain option when encoding or use the following (treating all the flacs as one album!):
find originals -name "*.flac" -type f -print0 | xargs -0 metaflac --preserve-modtime --add-replay-gain
or you can create the following small script and call it with the name of your base directory (/srv/music, or something like that). This will treat all songs in one directory as one album. #!/bin/sh
basedir=${1:-.}
IFS="
"
for dir in `find $basedir -type d`; do
ls $dir/*.flac >/dev/null 2>&1 && metaflac --add-replay-gain $dir/*.flac
done
This information is here for historic purposes. I am not maintaining the ebuilds anymore and they will very probably not work on your system anyway.
With the current amount of ebuilds on my blog it might be hard to find each one of them. So I decided it is a good idea to have them all together.
Here is a list of the ebuilds you can find on my site (if you have questions or comments, please leave a comment with the ebuild):
Amarok-svn ebuild. This ebuild will build the latest Amarok (the music player for linux) version from subversion. You can�t be more up-to-date
Exscalibar ebuild. This ebuild enables the moodbar extension for Amarok
SmartDJ ebuilds. This set contains all the dependencies to install the SmartDJ plugin for Amarok
Here is a list of related ebuilds that are not hosted on my site and for which I don’t have any responsibility (so don’t mail me if they don’t work):
libgpod-cvs-0.4.0 ebuild. A CVS ebuild for ipod support maintained by Nathan. If you have questions concerning this ebuild please contact Nathan under: nathan at toonetown dot com
In august 2005 I decided to get myself a home theater PC (HTPC). Before starting the whole event, I wrote down a couple of small requirements for the machine:
It should ‘look’ nice
The size must fit the stereo
The machine must be very, very quiet
The sound quality should be as good as possible
The machine should be able to have all ‘HTPC’ functionality without using Microsoft Media Edition
The hardware
As you can see in the list above, most of the requirements (looks, size and noise level), are dictated by the choice of case. Since the machine is going to be located in the living room noise turned out to be the main reason for choosing the case.
Based on the above I ended up buying the following components:
An HFX classic case in black. If installed correctly (with all the heatpipes, etc.) this case can live without any active cooling. This means it is as silent as a case can be. I got it with the default power adapter (ST30NF 300W)and theiMON VFD-IR.Info.
An AMD Athlong 64 Processor 3000+ with Venice core. Although at the time of buying there were faster processors on the market, I chose this one because of the power consumption. Link.
A gigabyte of RAM.
The old ATI card that I had laying around, which I figured should be up to the job. It is an ATI Sapphire Atlantis Radeon 9600 Pro
A Hauppauge MCE 500. This TV card basically features two Hauppauge 150 cards in one. So it is possible to record from two channels at the same time. I opted for a version without a remote control. Info.
A Terratec Aureon Space 7.1. I digitized all my CDs so the sound output of the HTPC is one of the key requirements. After a log of reading on different forums I learned the following two things:
Stay away from Creative as they seem to do funky stuff with their bitrates.
ENVY Chips have the best consumer sound available.
I chose the Terratec because of the overall positive reviews it had and I must say, it sounds like a beauty. Link.
A Seagate 250 Gb SATA Hard disc. A little googling showed that for Seagate has an excellent name when it comes down to crating quiet hard discs. Link.
A BENQ DVD DD DW1640, ATAPI CD/DVD-ROM drive. Because it operates very silently. Link.
Since I could not have cables in the living room I needed to go with a WIFI card. Finding a wifi card that would work with 64 bit linux proved to be a very hard undertaking. I think I tested about four cards, before I finally bough a Linksys WUSB54GP v4.0 802.11g Adapter. The card has performed very well during the last 11 Months. And with the release of kernel 2.6.17 it’s driver is finally included. Oh, and it looks pretty funky standing up on its feet. Link.
The software
To make sure that everything created on the machine is transportable and free, I chose to install Mythtv on my HTPC. Mythtv features all the PVR functions one needs and it also comes with modules for listening to music and looking at photos. As stated before music is one of the key features of my HTPC and since I completely moved to digital Photos the ability to present slideshows in my HTPC application comes as very handy.
Initially I chose gentoo linux. This worked very well, but took an enormous amount of time to stay up to date. So after 8 Months I turned to Kubuntu Edgy Eft. More on that later.
As it turned out, a lot of the components (both hardware and software) I chose made a lot of problems… So building everything took way more time than planned.
I regularly check the SVN builds of Amarok my favorite music program (if you are using linux, go check it out). Since I also use Gentoo, I just needed to have a good ebuild for it. I found a very good file on the Amarok forums, but had some small problems with it (it did too much), so I made a small update.
03/06 small update: on the Amarok forums someone pointed out that the same result could be achieved in a more elegant way. The download now points to the more elegant file.
06/08 update: Andrew pointed out that you need to update the ebuild with a couple of things. Please read the comments for the information. Personally I didn’t have any luck lately since the process now seems to need unsermake and QT4. I am working on that.