Difference between revisions of "FAQ"

From SfzWiki
Jump to: navigation, search
(sound is choppy when using openal)
 
(4 intermediate revisions by one user not shown)
Line 3: Line 3:
 
openal works better with esd than with alsa
 
openal works better with esd than with alsa
  
* edit /etc/openalrc
+
* edit /etc/openalrc (or ~/.openalrc )
 
** replace
 
** replace
 
   (define devices '(alsa))
 
   (define devices '(alsa))
Line 11: Line 11:
 
   (define esd-out-device "default")
 
   (define esd-out-device "default")
  
see also http://frictionalgames.com/forum/showthread.php?tid=1255
+
see also
 +
* http://frictionalgames.com/forum/showthread.php?tid=1255
 +
* http://wiki.vdrift.net/Configuring_the_sound
 +
* http://opensource.creative.com/pipermail/openal/2007-July/010540.html
 +
* http://opensource.creative.com/pipermail/openal/2007-July/010591.html
 +
* http://www.game-warden.com/forum/archive/index.php/t-4036.html

Latest revision as of 22:46, 10 September 2007

sound is choppy when using openal

openal works better with esd than with alsa

  • edit /etc/openalrc (or ~/.openalrc )
    • replace
 (define devices '(alsa))
 (define alsa-out-device "default")
    • by
 (define devices '(esd))
 (define esd-out-device "default")

see also