A Letter to Jim Prentice About the Canadian DMCA

Bonjour Monsieur Jim Prentice,

I am writing you on this beautiful day from California. I am a Canadian living abroad working at Pepperdine University as a teacher in the field of theatre.

Tougher Copyright restriction for us, theatre artist, is something that will be detrimental to our art. Not only it will hinder how we do our craft but it will also affect the quality of our work. Please do not let this go through as our culture will seriously be impacted by this new Copyright. I beg you, overturn this new Copyright and let’s have an open conversation. A conversation with the people so that we can make a policy that is sensible to various groups and more importantly to the Canadian people.

There is a tendency in the United States from the music industry to lock music with their DRM. This is not the wave of the future as more and more are starting to offer music without DRM. The people are speaking and I beg you to not do like the United States on DRM.

The music industry as we know it is slowly dying. Do not act on their request as they are only thinking about themselves. They are not even thinking about their own talent. Why should you?

I seriously hope that you are acting in the best interest of the Canadian consumers and not the RIAA and MPAA. Are you?

Please explain to me what are the interest of the Canadian consumers?

Sincerly,

Benoit Beauchamp

I want that space!

Hello? Is there anybody in there?

How cool would it be to transform this into a performance space. Put some sort of flooring and voila you got a space that you can use. Ill find one some day.

MX500 on Slackware Current

When I upgraded packages on my slackware box this morning to the latest xorg server, my mouse wouldn’t scroll so I googled for a fixed. I don’t when the change occurs but that’s not relevant. At first I just though that the xmodmap changed on me. Well that prove to be right I actually found a better solution.

In File: /etc/X11/xorg.conf

Section "InputDevice"
Identifier "Mouse0"
Driver "evdev"
Option "evBits" "+1-2"
Option "keyBits" "~272-287"
Option "relBits" "~0-2 ~6 ~8"
EndSection

Under XOrg 7.1, this gets all buttons working normally (mostly), including Back, Forward, Scroll, and Cruise. xmodmap and imwheel are not needed. With this config the Quick Switch Program Selector button doesn’t do anything by default, but xev shows it as Button 8. Cruise Up triggers three events - Button 4 Press, Button 4 Release and Button 9 release. Cruise Down triggers three events - Button 5 Press, Button 5 Release and Button 10 Release.

..Gentoo Wiki

kira kira shower

kira kira shower

Hobby and work, can they mix?

By trade I am a theatre designer who is currently teaching and my hobby is working on computer on various projects unofficially. I have been mixing those two for quite some time and I can actually see the two merging at some point in time. I am fond of lighting design and I think more and more we see progress towards new technology. The days of just having a vibrant filament are almost over, now is the time for the 0 and 1. I have been debating the use of the blog and I wanted to open up to the world. Can the two mix with some sort of success?

I always gather as much as if there is good content then there should be a crowd. I have read some of the theatre blogs out there. They are mostly geared towards reviews and bringing nothing but critic to the table. I am personally not a fan of those type of blogs. I also spent some time reading dance blogs which to me are more interesting because they bring out interesting questions. So to re-cap, theatre nay, dance yay.

I have been a slackware user for more then 10 years now. I haven’t done much for the community but feel the need to participate in some ways now. I wonder if people are interested in having a gemini tell his story.

Can you mix dance/theatre design and a personnal hobby in a blog? I haven’t seen much of them around. You could ask the same question for any type of other art mixed with technology? What would the answer be? I actually don’t know of any blog that post something regularly about design. I know all about the reviews so no need to remind me. If you do have a blog about theatre design, please let me know, I would love to read yours.

I would like to think that it is possible. Theatre design is evolving into something that is very interesting and well, we all know about technology. For example, Linux is, to me at least, starting to get some attention from various people and maybe the more we talk about it the better open source software can position itself to lead the way. It’s a dream but, eh, why not?

Convert MP3 to M4A on Linux, Ring.. Ring?

Ok so here is what I have done to convert a mp3 to m4a to make it play on my iPhone through linux. For starter, we want to convert it to a wav file so that there is no loss in quality. I read that if you convert from mp3 to m4a directly you are bound to loose some quality which makes sense. Mp3 and m4a are compressed files after all. Here are all the files that you will need.

Linux (… duh.)
Mplayer
Faac
mp3info
mp3splt

Here is the basic conversion from mp3 to wav using mplayer.

mplayer -ao pcm testing.mp3 -ao pcm:file="testing.wav"

And then I put the wav file in faac and gave it some tag.

faac testing.wav -o sleeping.m4a -w --title Test --album Test

There you go. They are some really nice commands for faac which could be nice to pass to from a script. Hum… So here is a script that will cut to the first 40 seconds and convert an mp3 to a m4a while keeping the tags for that track. It’s a bit dirty but eh, it’s free and useful (to me anyway).

lightx@HIGH:~/bin$ cat mp3tom4a.sh
#!/bin/bash
name=$(basename $0)
#
#did you pass any command?
#
if [ -z "$1" ]
then
echo “Usage: $name trackname.mp3″
exit 1
fi
#
#keep the mp3 ID3 tag information and put it in /tmp
#
mp3info -p “File:%f\nTitle:%t\nArtist:%a\nAlbum:%l\nTrack:%n\n” $1 > /tmp/mp3scan.txt
trackname=$(cat /tmp/mp3scan.txt | grep File | cut -d”:” -f 2 | cut -d”.” -f1)
title=$(cat /tmp/mp3scan.txt | grep Title | cut -d”:” -f 2)
artist=$(cat /tmp/mp3scan.txt | grep Artist | cut -d”:” -f 2)
album=$(cat /tmp/mp3scan.txt | grep Album | cut -d”:” -f 2)
track=$(cat /tmp/mp3scan.txt | grep Track | cut -d”:” -f 2)
#
#split the first 40 second
mp3splt $1 0.0 0.40 -o out.mp3
#
#convert to wav
mplayer -ao pcm out.mp3 -ao pcm:file=”out.wav”
#
#encoding to m4a
faac out.wav -w –artist “$artist” –title “$title” –album “$album” –track “$track” -o $trackname.m4a
#
#cleaning up
rm out.wav out.mp3

Dirty indeed, but I like it. I could expend this little bash script to have a second and third option which would be to cut from X time to Y time. Shouldnt be that hard to implement but I don’t feel like doing it right now anyways. The 40 second limit is because of my iPhone. Apparently you can only use 40.04 sec not 40.05 via Rogue Software.

1. Actually, ringtone files (currently) have a hard ceiling of exactly 40.04 seconds. MakeiPhoneRingtone will pass off files of any length, but the Ringtones tab in the iPhone area of iTunes won’t show files longer than 40.04 seconds. I used Fission to determine exact file lengths. 40.04 works, and 40.05 doesn’t. Bizarre, but true. ↩

I’m annoyed.

I just saw the Pina Bausch show at Royce Hall which is part of the UCLA live series. I’m a big fan of their theatre series. I just read the review from LA Times of Pina Bausch show and it was somewhat good but disjointed (the review). No linear train of though and somewhat bias review because of the name of Pina Bausch. It didn’t go anywhere. Also, what irritates me more is that in my mind, inFluxdance is doing a show that is more relevant to me, something that has more meaning. In the review it says something along the line of being relevant but I beg to differ… Whales in Japan doesn’t affect me … It’s poetic yes, but not relevant at all. There was an enormous tail of a whale on stage which looked cool but was more of a sculpture then anything else. I felt like the movement itself was nice only because the performer where the one pulling it off. I didn’t see any mind blowing performance… I didn’t see meaning… I wish I did.

On the up side, it was funny. ..

I sometimes think that big name choreographer just doesn’t do it for me. I expect more.

Album Cover Blog

Sleevage.com is a blog about album cover. I can’t remember how I got there but nonetheless, its a pretty cool blog if you are into that sort of thing. I am. I always loved the album cover of blue note records. It’s not a heavy post blog but there is enough material for you to waste couple of minutes, .. doing research, .. for your upcoming project… right.

Vonnegut Dollhouse: Ornamental Etherworld
[Image from Sleevage]

Painter Alexander Couwenberg

A quick post about Alexander Couwenberg painting style, … I love it. I wouldn’t mind having one of his painting at home or in my office.

Graffiti With Light


[Image: By and via Energie in Motion].

How cool is this! Check out the link for more pictures.