Joe's Blog

Teaching, technology, open source and everything in between.

Archive for the ‘openSUSE’ Category

h.264 to mpg

without comments

The following will probably not mean anything to you:

mplayer -vo dummy -ao dummy -identify your_video.avi 2>&1 | grep AUDIO_FORMAT | cut -d ‘=’ -f 2

hwac3:

mencoder -oac copy -ovc lavc -of mpeg -mpegopts format=dvd -vf scale=720:576,harddup \
-lavcopts vcodec=mpeg2video:vrc_buf_size=1835:vrc_maxrate=9800:vbitrate=5000:keyint=15:aspect=16/9 \
-ofps 25 -o your_video.mpg your_video.avi

everything else:

mencoder -oac lavc -ovc lavc -of mpeg -mpegopts format=dvd -vf scale=720:576,harddup \
-srate 48000 -af lavcresample=48000 \
-lavcopts vcodec=mpeg2video:vrc_buf_size=1835:vrc_maxrate=9800:vbitrate=5000:keyint=15:aspect=16/9:\
acodec=ac3:abitrate=192 -ofps 25 -o your_video.mpg your_video.avi

Yes, I needed to convert a video file. No, I can’t remember the options by heart.

;)

Written by Joe

September 4th, 2010 at 10:30 pm

Posted in Open Source,openSUSE

Tagged with ,

1st thing to do after installing openSUSE

with one comment

The first thing to do after installing openSUSE is to turn your install into a multimedia machine. Luckily, things have advanced so far that it only take a click of a button. (The necessary buttons are right here for your convenience.)

Enjoy!

Written by Joe

July 18th, 2010 at 7:50 pm

Posted in Open Source,openSUSE

Kernel panic after upgrading to openSUSE 11.3

with one comment

If you, too, suffer from a kernel panic after upgrading to openSUSE 11.3 adding

  • nohz=off highres=off

to your boot options will let your beloved OS come back to life.

Written by Joe

July 16th, 2010 at 1:16 pm

Posted in Open Source,openSUSE

Educational Linux distributions

without comments

If you are looking for an educational Linux distribution, you have at least three choices:

KinderTux is especially interesting, because it isn’t aimed at pupils or teachers but at younger children to help them enjoying computers. The only alternative to KinderTux I could find was Quimo, which uses Ubuntu as base system.

Written by Joe

February 9th, 2010 at 10:49 am

Bitten by Metacity: Bug 555027 – autologin failure …

without comments

I got bitten by this ugly bug (Bug 555027 – autologin failure …) and could no longer login to my lovely Gnome. With the help of the fine lads at #opensuse-gnome on Freenode and in the forum, I was able to find a patch here.

Now everything seems working again.

Written by Joe

January 27th, 2010 at 8:58 pm