Save the following content to a file named pause_notify.lua and load it into OBS Studio
obs = obslua
function script_description()
return "Notifies when recording is paused."
end
function on_event(event)
if event == obs.OBS_FRONTEND_EVENT_RECORDING_PAUSED then
os.execute('notify-send -t 5000 "OBS Recording Paused!"') -- Linux Notification
-- Windows: os.execute('msg * "OBS Recording Paused"')
end
end
function script_load(settings)
obs.obs_frontend_add_event_callback(on_event)
end
Download
0 formats
No download links available.
Using LUA Scripts in OBS Studio: Get Notified When Recording Pauses! | NatokHD