Configuring Applications for OSSv4

From Open Sound System
Revision as of 15:34, 9 May 2008 by Cesium (Talk | contribs) (Add system sounds note)

Jump to: navigation, search

Most applications should work with OSSv4 out of the box. However, some distributions separate the OSS output plugins, or patch the software to use another sound API. This page will show how to tell some common applications to use the OSS API. There's no need to use any of these tips unless there's a problem.

General issues

libasound.so.2 errors

  • Some apps refuse to start with libasound.so.2: undefined symbol errors. This is because OSS's ALSA emulation method (libsalsa) is based on a version of libasound which is too different from the (likely newer) version the apps were compiled with.
    • Just move it out of the way. It's rarely needed as the vast majority of apps can use OSS directly. This may require root permissions ("su" or "sudo").
    • mv /usr/lib/oss/lib/libsalsa.so.2.0.0 /usr/lib/oss/lib/libsalsa.so.2.0.0.bak
    • ldconfig

Getting system sounds

  • KDE: Open the "Contol Center". Select "Sound & MultiMedia", "System Notifications" and "Player Settings". Check "Use an external player", and select an OSS supporting player which support ogg files (ogg123 for example). All the quoted names may be different on other systems due to localization.

Specific applications

Enemy Territory - Quake Wars

    • Edit ~/.etqwcl/base/etqwconfig.cfg and change
seta s_driver "alsa"
to
seta s_driver "oss"

esd/esound

    • Debian: install libesd0 instead of libesd0-alsa.

Flash version 9

    • Flash V9 requires libflashsupport to output sound via OSS. Typically a 32-bit version of the library is required.

getting libflashsupport

    • Ubuntu: do not install libflashsupport from apt-get. That version only supports Pulseaudio. Remove this package if you have it. You still have to follow the other instructions.
    • Gentoo: you just need to add net-www/libflashsupport in /etc/portage/package.keywords file and emerge using: USE="oss ssl" emerge libflashsupport . Restart browser and now it should work. You can ignore the other instructions.
    • Arch: libflashsupport should be already included in the oss-linux-free package on the i686 platform. Otherwise, follow the instructions.
    • There is a precompiled 32-bit .so at [1]. But compiling it is preferable. If fetched skip to "installing libflashsupport" below.

compiling libflashsupport

    1. flashsupport.c is found in /usr/lib/oss/lib
    2. Comment out "#define OPENSSL" by placing a '//' in front of that line
      • 64 bit users will require gcc multilib support.
      • In Debian/Ubuntu - sudo apt-get install gcc-multilib
    3. To compile: cc -shared -m32 -O2 -Wall -Werror flashsupport.c -o /tmp/libflashsupport.so
    4. Once you have a libflashsupport, it should be installed to /usr/lib/oss/lib

installing libflashsupport

    1. sudo install -s /tmp/libflashsupport.so /usr/lib/oss/lib
    2. sudo install -s /tmp/libflashsupport.so /usr/lib
    3. Restart browser
    4. Sometimes getting flash to work requires getting rid of libsalsa. see [2] for how to do this.

Alternatives to Flash

  • If the above fails, than a Flash alternative can be used. This has the added advantage of these alternatives being free.
  • gnash works for many flash videos.
    • Debian: apt-get install apt-get install mozilla-plugin-gnash or apt-get install konqueror-plugin-gnash
  • swfdec is another option.
    • Debian: apt-get install swfdec-mozilla

fluidsynth

  • Use "-a oss" option.
  • fluidsynth may use a fragment size which is too low for the soundcard (256 bytes in one case), which leads to a background noise. use "-z 1024" (or other values) to fix this.

Gnome Volume Applet

    • OSS already supplies a native GTK mixer - ossxmix.
    • Install gst-plugins-bad 0.10.7 and above:
      • Debian: apt-get install gstreamer0.10-plugins-bad
    • Or use precompiled patched gstreamer oss module:
      • 32 bit libgstossaudio.so version available from [3]
      • 64 bit version available from [4] (login required).
      • Follow installation instructions in README file.

libao, including libao based like mpg321

    • write default_driver=oss to ~/.libao

mpg123

    • Debian: install mpg123 instead of mpg123-alsa

MPlayer

    • write "ao=oss" to ~/.mplayer/config

openal, including openal based like Quake4

    • write the line "(define devices '(native oss))" to ~/.openalrc

recordmydesktop

    • This software supports either OSS or ALSA (set at compile time). Some packages set ALSA at compile time.
    • Debian:
      1. Get the source of the package (apt-get source recordmydesktop) and the build dependencies (apt-get build-dep recordmydesktop).
      2. Edit debian/rules to provide --enable-oss=yes to configure.
      3. Build package with dpkg-buildpackage and (re)install it.
      4. You may wish to prevent upgrades from overwriting the package with the ALSA version: echo recordmydesktop hold | dpkg --set-selections (as root).
    • Note that the used recording source should be set to 'vol' (if available). See Tips And Tricks#Recording_sound_output_of_a_program:.

scummvm - MIDI music

    • scummvm 0.11.0 supports midi output via timidity and also via fluidsynth.
    • Start timidity -Od -ir 7777 and then run scummvm. Select "TiMidity" as a music driver.
    • Alternately, if fluidsynth is compiled, you can select it as music driver. You need to add a soundfont entry to ~/.scummvmrc .

SDL, including SDL-based like frozenbubble

    • Debian: install libsdl1.2debian-oss or libsdl1.2debian-all
    • set SDL_AUDIODRIVER=dsp in the environment

skype

    • Arch: install skype-oss
    • install static OSS version from skype [5] (Direct link to latest static OSS version: [6])

sox

    • Debian: install libsox-fmt-oss

wine

    • Debian: install libwine-oss
    • Select OSS driver in winecfg - audio tab. (In some cases winecfg will output ALSA lib errors - they can be ignored).

vlc

    • Write "aout=oss" to ~/.vlc/vlcrc

xine

    • write "audio.driver:oss" to ~/.xine/config