Friday, May 22, 2009
Mozilla Firefox doesn't start after update
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
- 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)?
Monday, May 11, 2009
Noise reduction with audacity
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
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 \;or
rename 's/\.wma//' *\.wma\.ogg
(Test the renameing: rename --no-act --verbose 's/\.wma//' *\.wma\.ogg)
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,
- ...
Wednesday, April 15, 2009
Presenting KDE at LinuxInfoTag in Augsburg (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