Friday, May 22, 2009

Mozilla Firefox doesn't start after update

Starting Firefox after the update failed with the following message: "Could not find compatible GRE between version ...".
In the Mozilla Buidservice repo I use (http://download.opensuse.org/repositories/mozilla/openSUSE_11.0/i586/) the
xulrunner package is updated to 1.9.0.11 (mozilla-xulrunner190-1.9.0.11-2.2.i586.rpm) while Firefox is still 3.0.10 (MozillaFirefox-3.0.10-3.1.i586.rpm). Just downgrade xulrunner* to 1.9.0.10 and everything should work again.

Tuesday, May 12, 2009

Destroying Communities

I'm not only promoting KDE and asking stupid questions I also research about community building. The opposite of the questing you want to answer sometimes gives you a totally new perspective of your subject. Therefor my question is not how to build communities but how to destroy them.
  • How can I destroy a community (as a leader or developer or user or troll)? Under which circumstances would you stop contributing to KDE or any other Open Source Project (I've read some tweets about developer leaving a certain distro)?
I would be very happy if you could leaves some comments.

Monday, May 11, 2009

Noise reduction with audacity

I recorded some interviews for my PhD thesis during OpenExpo (in Bern). The background noise unfortunately was very loud so I had to concentrate very hard while listening. Audacity has the nice effect "noise reduction". I tried it and normalized the track afterwards. The difference is magnificent. Now it's easy to understand the answers to my questions, althou the voices sound a little bit unnatural now (but that doesn't matter).

Kudos to wine developers

Yesterday my father was visiting and wanted to show me a CD about Australia. I first thought there were some images or videos on it but it was a MS-Windows .exe file. :-(

I knew I installed wine some month ago. So I just clicked on the file and entered "wine" when KDE was asking for the application with which I wanted to open this file. Really deeply impressed we could navigate through the whole program including animations, music, text, etc.

Kudos to the wine developers. Great work!

Finally I added wine as standard application for .exe files to the file association dialog in KDE4 systemsettings and now I can run .exe files with a simple mouseclick. I'm delighted to see how flexible Linux has become these days.

Thursday, April 30, 2009

How to convert wma to ogg

How can I convert all *.wma to *.ogg in one directory?
I first tried the approved ffmeg. That one helped me many times with good results.

Version 1:
find -name '*wma' -exec ffmpeg -i {} -acodec vorbis -ab 128k {}.ogg \;
rename 's/\.wma//' *\.wma\.ogg
(Test the renameing: rename --no-act --verbose 's/\.wma//' *\.wma\.ogg)
or

Version 2:
for i in *.wma; do ffmpeg -i "$i" -vn -acodec vorbis -ab 128k "${i/.wma}".ogg; done
# ffmpeg: -vn => novideo, -acodec vorbis => ogg-encoder, -ab set audio bitrate to 128k (64 is standard. That option doesn't seem to work with ogg :-(
# ${i/.wma} is cutting the filename $i from ".wma"

The quality gets really worse.

Best quality with version 3:

1. Step: Convert wma to flac with ffmeg
ffmpeg -i input.wma -vn -acodec flac output.flac

2. Step: Convert flac to ogg with oggenc
oggenc input.flac -q2 -o output.ogg
# -q quality 2 (1 bad .. 10 excellent)
# -o output-file

Or all in one line to convert the whole directory:
for i in *.wma; do ffmpeg -i "$i" -vn -acodec flac -y tmp.flac; oggenc tmp.flac -q2 -o "${i/.wma}".ogg; done; rm -f tmp.flac
# -y Overwrite output files.
# rm -f delete without further questions

EU Parliament elections and F/OSS

European Parliament election in 1 month and 4 days. The last months before elections politicians are listening very carefully to their voters. http://www.freesoftwarepact.eu has some ideas how to bring FS and OSS into politicians minds. Even if there is no campaign in my EU-country (at the moment there is only one in Begum, France and Italy) it reminds me (and hopefully you) that this is a good time to act. NOW!


I will tease every politician I see and ask him or her about their attitude towards

  • software patents,
  • DRM,
  • support for F/OSS in schools and gov. administration,
  • ...
And perhaps I'm going to write some emails. So they know there is something like F/OSS and there are many, many voters interested in that topic.

Wednesday, April 15, 2009

Presenting KDE at LinuxInfoTag in Augsburg (Hello Planet)

Sat. March 28th LinuxInfoTag took place in Augsburg (in the south of Germany). Round 250 interested people were visiting the booths of KDE, Debian, and many many more Open Source Projects and could discuss with members of the communities or listen to 20 talks. This was not only my first official event promoting KDE I also had the chance to do my first talk introducing KDE 4.2. (Talking about first times: this is my first post on planet.kde.org (thanks to Jonathan Riddell): Hello Planet!)




It was a great pleasure and honor to present KDE 4.2 together with Lydia, Eckhart and Frederik! Thanks for the fun and thanks to everyone who contributed to KDE (otherwise I had nothing to present).
Apart from a small number of comments the majority of visitors was really excited about KDE 4.2. :-)
Kudos to all of you!

P.S.: You can find the slides (German) here:
PDF (3,7MB): http://www.luga.de/Angebote/Vortraege/KDE42_LIT_2009/KDE42_LIT_2009.pdf
ODF (OOo3.0.1) (4,6MB): http://kde.org/kdeslides/LITAugsburg2009/KDE42-LIT-Augsburg2009.odp
ODF template (102KB): http://www.mevin.net/download/KDE42-template.otp