Mplayer compile options: ./configure --disable-fbdev --enable-alsa --enable-gui
make
make install
In the KDE Menu Editor create a new Mplayer set under the
Multimedia/Video Player section, and in the command line set: gmplayer -cache 8192 -channels 2 %U
Now you can associate the video fieles with MPlayer.
I had some problems with the alsa plug-in in MPlayer.
To fix this problems you should open .mplayer/gui.conf in your home
directory and change these lines
ao_oss_mixer = "/dev/mixer"
ao_oss_device = "/dev/dsp"
to
ao_oss_mixer = "mixer"
ao_oss_device = "dsp"
Next you should edit /etc/asound.conf like this
pcm.!default {
type plug
slave.pcm "swmixer"
}
hex2bin FRW%1V%VLD%.hex FRW%1V%VLD%.bin /L8192 /P0
pcm.swmixer {
type dmix
ipc_key 1234
slave {
pcm "hw:0,0"
period_time 0
period_size 1024
buffer_size 4096
rate 44100
}
}
pcm.dsp {
type plug
slave.pcm "swmixer"
}
ctl.mixer {
type hw
card 0
}
The text in bold must have. The other text adds "listening to different
sound files at the same time" support (read more here
(http://www.fedoraforum.org/forum/showthread.php?t=18522)).
If you don't have /etc/asound.conf file, you should create it (by
default this file does not exist).