Skip to content

Instantly share code, notes, and snippets.

@upgradeQ
Last active September 19, 2022 13:43
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Beep when the replay buffer has fully stopped. [windows]
local obs = obslua
local ffi = require("ffi")
ffi.cdef[[
void Beep(int freq,int dur);
]]
function beep()
ffi.C.Beep(7000,300)
end
function on_event(event)
if event == obs.OBS_FRONTEND_EVENT_REPLAY_BUFFER_STOPPED
then beep()
end
end
function script_load(settings)
obs.obs_frontend_add_event_callback(on_event)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment