Languages
77 gist results
77 gist results
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
obs = obslua | |
hotkey_ids = {} | |
show_all_id = nil | |
sources = {} | |
function script_description() | |
local description = [[adds hotkeys to toggle sources]] | |
return description |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-------------------------------------------------- | |
-- OBS Text Timer | |
-------------------------------------------------- | |
-------------------------------------------------- | |
-- Setting | |
-------------------------------------------------- | |
local TimerFormat_Full = "%Y/%m/%d %H:%M:%S" | |
local TimerFormat_Time = "%H:%M:%S" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sock=/tmp/obs-control.sock | |
if [ ! -S "$sock" ]; then | |
echo "OBS not running" | |
exit 1 | |
fi | |
case "$1" in |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local obs = obslua | |
local ffi = require("ffi") | |
ffi.cdef[[ | |
void Beep(int freq,int dur); | |
]] | |
function beep() | |
ffi.C.Beep(7000,300) | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- 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() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
obs = obslua | |
automove_path = "" | |
should_remux = false | |
function basename(path) | |
local name = string.gsub(path, "(.*/)(.*)", "%2") | |
return name | |
end | |
function on_event(event) |