Easyurpmi site with a lot of usefull addresses of Mandriva urpmi repositories.

March 24th, 2009 by mzobniow

Always forgering the address:

http://easyurpmi.zarb.org/

Add support for WBE smartcard reader to existing kernel.

March 15th, 2009 by mzobniow

To add the support is enough to just change two files in kernel source:

ftdi_sio.h

ftdi_sio.c

In the first one add:

#define WBE_VID                      0×104F

#define WBE_SMARTMOUSE_PID   0×0002  /* Smartmouse USB -Maciek*/

In the second:

{ USB_DEVICE(WBE_VID, WBE_SMARTMOUSE_PID) },

Transformation of mkv movies by ffmpeg for usage in dm800

March 14th, 2009 by mzobniow

ffmpeg -deinterlace -y -i in_movie.mkv -f matroska -acodec ac3 -ac 2 -ar 48000 -ab 128k -vcodec libx264 -level 41 -r 25 -coder 1 -g 250 -b 1024k -bt 1024k -bf 16 -threads 2 out_movie.mkv

There is also a couple of another interesting options like

-aspect : change aspect of movie to i. e. 4:3, 16:9 etc.