A port of the sfxr sound effect synthesizer to Lua
Go to file
2014-08-26 15:56:24 +02:00
loveframes@a02fafd902 Added LoveFrames as a submodule so I can start to build a fancy GUI as a demo 2014-05-12 14:24:04 +02:00
.gitmodules Added LoveFrames as a submodule so I can start to build a fancy GUI as a demo 2014-05-12 14:24:04 +02:00
conf.lua Made demo window height larger and added Save/Load/Export buttons 2014-06-20 14:48:38 +02:00
LICENSE Initial commit 2014-04-11 10:31:10 -07:00
main.lua Update parameters after loading a sound, fixes #11 2014-08-26 15:55:58 +02:00
README.md Typos & Release indications 2014-08-21 16:51:29 -04:00
sfxr.lua Added untested generateString; Fixed Lua 5.2 compatibility 2014-08-09 18:38:20 +02:00

sfxr.lua

A port of the sfxr sound effect synthesizer to pure Lua, designed to be used together with the awesome Löve game framework.

Example usage

These examples should play a randomly generated sound.

With Löve 0.9.x:

local sfxr = require("sfxr")

function love.load()
    local sound = sfxr.newSound()
    sound:randomize()
    sound:play()
end

With lao:

require("ao")
local sfxr = require("sfxr")

local driverId = ao.defaultDriverId()
local device = ao.openLive(driverId, {bits = 16, rate = 44100, channels = 1})

local sound = sfxr.newSound()
sound:randomize()

local buffer = sound:generateString()
device:play(buffer, #buffer)

More documentation is available at the Project Wiki