View Full Version : Neverwinter Nights - Crackly sound
fearpi
March 12th, 2007, 02:17 AM
That's pretty much it, really. I get crackly sound when I play NWN on edgy. Any ideas?
Sandlst
March 12th, 2007, 01:37 PM
Ive had trouble with this before because the sdl library that was being used was biowares own, instead of the ubuntu one, which works better. To change this open up the nwn file in your Never Winter Nights directory with a text editor, find the line export LD_LIBRARY_PATH= ./lib:./miles: $LD_LIBRARY_PATHand change it to export LD_LIBRARY_PATH= ./miles: $LD_LIBRARY_PATHthen try launching it. Good luck, post back if you have any problems.
fearpi
March 12th, 2007, 02:22 PM
I had followed that same train of thought before by changing the symbolic links in nwn/lib/ to point to the SDL libraries in /usr/lib/. It did not alleviate the crackling. I just tried your method, but it still continues to crackle. Any other ideas?
fearpi
March 12th, 2007, 03:37 PM
Well, I solved it. I removed libsdl1.2debian-alsa and installed libsdl1.2debian-oss .
Alterios
May 11th, 2007, 01:48 PM
Code:
export LD_LIBRARY_PATH= ./miles: $LD_LIBRARY_PATH
should read
Code:
export LD_LIBRARY_PATH=./miles:$LD_LIBRARY_PATH
no space between PATH= and ./miles
fearpi
May 11th, 2007, 02:24 PM
Does that actually make a difference?
Slingshot
August 10th, 2007, 09:25 AM
Code:
export LD_LIBRARY_PATH= ./miles: $LD_LIBRARY_PATH
should read
Code:
export LD_LIBRARY_PATH=./miles:$LD_LIBRARY_PATH
no space between PATH= and ./miles
Hi guys, thanks for the tip, this fixed up my neverwinter nights sound/music stutter , but it also stop the movies (which I could see, but not hear before changing the script. No big loss as they didnt work under vista either). Any idea's?
SS
elkanguro
September 26th, 2007, 06:24 AM
Ive had trouble with this before because the sdl library that was being used was biowares own, instead of the ubuntu one, which works better. To change this open up the nwn file in your Never Winter Nights directory with a text editor, find the line export LD_LIBRARY_PATH= ./lib:./miles: $LD_LIBRARY_PATHand change it to export LD_LIBRARY_PATH= ./miles: $LD_LIBRARY_PATHthen try launching it. Good luck, post back if you have any problems.
Thanks man, it helps:)
Gillen
September 26th, 2007, 02:45 PM
Hi All,
If this is of interest I fix my install of NWN HotU SoU as follows.
To fix sound
---------------------------------------------------------
apt-get install libsdl1.2debian-all
now edit the nwn script to look like this:
#!/bin/sh
# change to the nwn directory
cd $(dirname $0)
# set enviroment variables
export SDL_MOUSE_RELATIVE=0
export SDL_VIDEO_X11_DGAMOUSE=0
export SDL_AUDIODRIVER=esd
# set library search path
export LD_LIBRARY_PATH=./miles:$LD_LIBRARY_PATH
# fire up the game
./nwmain $@
-----------------------------------------------------
I picked this up from the Bioware Forum, hope it helps.
Steven.
Marran77
December 11th, 2009, 09:12 AM
Thanks, this really helped!
vBulletin® v3.8.4, Copyright ©2000-2012, Jelsoft Enterprises Ltd.