parent
36420cb95b
commit
82338ef7e4
@ -1 +1 @@
|
||||
wine-0.9.53-fe.tar.bz2
|
||||
wine-0.9.54-fe.tar.bz2
|
||||
|
@ -1,10 +1,38 @@
|
||||
Wine and Pulseaudio Support
|
||||
---------------------------
|
||||
Currently wine does not have native support for pulseaudio. However different
|
||||
ways exist to make wine sound work alongside pulseaudio. Different sound
|
||||
outputs can be selected via `winecfg` or in the registry of wine.
|
||||
|
||||
Currently wine does not have native support for pulseaudio. As a workaround to
|
||||
make wine work alongside pulseaudio select OSS sound output in winecfg. Wine
|
||||
then calls padsp as a wrapper if alsa-plugin-pulseaudio and pulseaudio-utils is
|
||||
installed.
|
||||
|
||||
ALSA
|
||||
----
|
||||
To achieve sound output via the wine alsa driver you need to add
|
||||
a pulseaudio alsa device to the alsa configuration and activate it in wine. See
|
||||
http://www.pulseaudio.org/wiki/PerfectSetup#ALSAApplications on how to do this.
|
||||
|
||||
|
||||
Esound
|
||||
------
|
||||
If the pulseaudio-esound-compat package is installed selecting the EsounD driver
|
||||
in wine should enable sound via pulseaudio.
|
||||
|
||||
OSS
|
||||
---
|
||||
To use the oss driver of wine copy the following script to ~/bin/wine and make
|
||||
sure that ~/bin is in your path with a higher priority then /usr/bin. The script
|
||||
will call the pulseaudio dsp wrapper padsp.
|
||||
|
||||
#!/bin/sh
|
||||
if [ -x /usr/lib*/alsa-lib/libasound_module_pcm_pulse.so ] && [ -x "/usr/bin/padsp" ] ; then
|
||||
echo "Running padsp as pulseaudio wrapper for wine"
|
||||
exec padsp -n Wine -- /usr/bin/wine "$@"
|
||||
else
|
||||
exec /usr/bin/wine "$@"
|
||||
fi
|
||||
|
||||
For more information on a good pulseaudio setup see:
|
||||
http://www.pulseaudio.org/wiki/PerfectSetup
|
||||
|
||||
If you think you have found a bug related to this take a look at the bug
|
||||
reporting procedure at http://fedoraproject.org/wiki/AndreasBierfert/Wine.
|
||||
|
@ -1 +1 @@
|
||||
afead7bf1c9b4ae2758e03f82e0d6e88 wine-0.9.53-fe.tar.bz2
|
||||
a2677aa04cc7e9a27e8de533b8166627 wine-0.9.54-fe.tar.bz2
|
||||
|
Loading…
Reference in new issue