lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


Its keep giving the error. What can be the issue ?


[sun@example proteaAudio_lua_090204]$ lua example.lua 
lua: error loading module 'proAudioRt' from file './proAudioRt.so':                                                             
        liblua5.1.so.0: cannot open shared object file: No such file or directory                                               
stack traceback:                                                                                                                
        [C]: ?                                                                                                                  
        [C]: in function 'require'
        example.lua:2: in main chunk
        [C]: ?
[sun@example proteaAudio_lua_090204]$ 


-- create an audio device using default parameters and exit in case of errors
require("proAudioRt")
if not proAudio.create() then os.exit(1) end

-- load and play a sample:
sample = proAudio.sampleFromFile("sample.ogg")
if sample then proAudio.soundPlay(sample) end

-- wait until the sound has finished:
while proAudio.soundActive()>0 do 
  proAudio.sleep(0.05)
end

-- close audio device
proAudio.destroy()