Difference between revisions of "User:Michelle2 Zenovka/voice"
Jump to navigation
Jump to search
(New page: How to cook the voice daemon so it runs ok on linux including 64-bit ok brief description and details filled in on re-edits. My viewer binary lives in /usr/games/ so my voice needs to go...) |
|||
Line 26: | Line 26: | ||
#!/bin/sh | #!/bin/sh | ||
export LD_LIBRARY_PATH=/usr/share/ | export LD_LIBRARY_PATH=/usr/share/slvoice/::/lib32/:/usr/lib32/:/lib:/usr/lib/ | ||
/usr/games/SLVoice-bin -p tcp -h -c -ll -1 | /usr/games/SLVoice-bin -p tcp -h -c -ll -1 | ||
copy the voice binary to /usr/games/SLVoice-bin | copy the voice binary to /usr/games/SLVoice-bin |
Revision as of 01:05, 7 September 2008
How to cook the voice daemon so it runs ok on linux including 64-bit
ok brief description and details filled in on re-edits.
My viewer binary lives in /usr/games/ so my voice needs to go along side it in /usr/games
Create the following folder:-
/usr/share/slvoice
copy into this the following libraries from the latest offical linden distribution :-
- libalut.so
- libopenal.so.1
- libortp.so
- libuuid.so.1
- libvivoxsdk.so
if you are 64 bit you also need to get libidn.so. I got this from http://packages.debian.org/sid/i386/libidn11/download as i need a 32bit version and there is no lib32 package for it. Download it then unpack with
dpkg --extract libidn11_1.9-1_i386.deb .
create the following script as /usr/games/SLVoice
#!/bin/sh export LD_LIBRARY_PATH=/usr/share/slvoice/::/lib32/:/usr/lib32/:/lib:/usr/lib/ /usr/games/SLVoice-bin -p tcp -h -c -ll -1
copy the voice binary to /usr/games/SLVoice-bin