Skip to content

@danieleambrosino
danieleambrosino / automagic-scene-switcher.lua
Last active January 19, 2023 03:29
Simple Lua script for switching scene automatically in OBS
local settings = {
active = false,
main_scene_index = 1,
main_scene_probability = 0.75,
main_scene_min_duration_ms = 3000,
main_scene_max_duration_ms = 5000,
secondary_scene_min_duration_ms = 2000,
secondary_scene_max_duration_ms = 3000,
}
obs = obslua
hotkey_ids = {}
show_all_id = nil
sources = {}
function script_description()
local description = [[adds hotkeys to toggle sources]]
return description
@absindx
absindx / Text Timer.lua
Last active September 17, 2022 14:32
OBS Script - Text Timer
--------------------------------------------------
-- OBS Text Timer
--------------------------------------------------
--------------------------------------------------
-- Setting
--------------------------------------------------
local TimerFormat_Full = "%Y/%m/%d %H:%M:%S"
local TimerFormat_Time = "%H:%M:%S"
#!/bin/bash
sock=/tmp/obs-control.sock
if [ ! -S "$sock" ]; then
echo "OBS not running"
exit 1
fi
case "$1" in
@mitchelloharawild
mitchelloharawild / shiny.lua
Created May 3, 2024 09:03
OBS Script: Launch shiny for python app while OBS is loaded
obs = obslua
function script_properties()
local props = obs.obs_properties_create()
obs.obs_properties_add_int(props, "port", "Port", 1000, 9999, 1)
obs.obs_properties_add_path(props, "path", "App path:", obs.OBS_PATH_FILE, "*", nil)
return props
end
function script_description()
@UnaiM
UnaiM / obs_props_update.lua
Created April 7, 2021 22:38
Example of a question in the OBS Discord community
local elapsed = 0
function script_properties()
local props = obslua.obs_properties_create()
obslua.obs_properties_add_bool(props, 'foo', 'Foo')
return props
end
function script_tick(seconds)
if elapsed then
@Hild-Franck
Hild-Franck / desactivate-source-after-playback.lua
Created June 9, 2020 03:02
OBS lua script that enable media sources containing defined prefix in their name to be desactivated after playback.
obs = obslua
source_prefix = ""
source_list = {}
state_list = {}
current_scene = nil
-- Based on `media-switch-scene.lua` made by Exeldro
function script_update(settings)
source_prefix = obs.obs_data_get_string(settings, "prefix")
@upgradeQ
upgradeQ / beep.lua
Last active September 19, 2022 13:43
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
-- haha you can only create sources in lua, python will never be allowed
-- because of its dumb global lock
obs = obslua
source_def = {}
source_def.id = "shitty_source"
source_def.output_flags = bit.bor(obs.OBS_SOURCE_VIDEO, obs.OBS_SOURCE_CUSTOM_DRAW)
source_def.get_name = function()
@thejaylee
thejaylee / automove.lua
Last active February 29, 2024 05:41
OBS automove recordings/replays
obs = obslua
automove_path = ""
should_remux = false
function basename(path)
local name = string.gsub(path, "(.*/)(.*)", "%2")
return name
end
function on_event(event)