Wrecked Games

Please login or register.

Login with username, password and session length
Advanced search  

News:

We're just that awesome.

Author Topic: CEGUI_TheoraDemo works, but without audio  (Read 1533 times)

ancestral

  • Newbie
  • *
  • Karma: +0/-0
  • Posts: 1
    • View Profile
CEGUI_TheoraDemo works, but without audio
« on: January 12, 2008, 03:33:12 PM »


Hi,
after some (many) modifications to the demo taken from CVS, I got it working.
Video works very well, but SoundManager can't find any audio plugin.... ( SoundManager::loadSoundModules(); returns always 0  )
APS window says "No plugin" ...


Of course on my system (Ubuntu Linux) with mplayer the sound works.
What I have to do ?
Logged

dermont

  • Regular
  • *
  • Karma: +0/-0
  • Posts: 23
    • View Profile
Re: CEGUI_TheoraDemo works, but without audio
« Reply #1 on: January 13, 2008, 07:02:43 PM »

When you build the CEGUI_TheoraDemo the sound plugins for openal or FMOD are built, assuming you have the correct development libraries installed.

1) Check you have the openal development libs installed, e.g. "libopenal-dev"
   >> pkg-config --modversion openal

2) Check you've installed the sound module plugins after building the demo:
   >> sudo make install
   >> sudo ldconfig
   >> ls /usr/local/lib/*OAL*
Logged