Skip to content

Commit ce97e4f

Browse files
committed
initial clock design based on last years broadcast
1 parent b5b2b4a commit ce97e4f

File tree

5 files changed

+176
-50
lines changed

5 files changed

+176
-50
lines changed

clock.html

-47
This file was deleted.

clock/GaretHeavy.ttf

198 KB
Binary file not shown.

clock/clock.html

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
<!DOCTYPE html>
2+
<html>
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<title>A simple clock</title>
7+
<style>
8+
@font-face {
9+
font-family: 'MyFont';
10+
src: url('./GaretHeavy.ttf') format('truetype');
11+
}
12+
13+
#output {
14+
display: flex;
15+
justify-content: center; /* Horizontal centering */
16+
align-items: center; /* Vertical centering */
17+
font-family: 'MyFont', monospace;
18+
font-size: 120px;
19+
text-align: right;
20+
color: white;
21+
width: 750px; /* Rectangle width 600 for non pm, 750 for pm*/
22+
height: 160px; /* Rectangle height */
23+
border-radius: 30px;
24+
padding: 10px;
25+
background-color: rgba(151, 145, 255, 1);
26+
box-sizing: border-box;
27+
text-align: center;
28+
}
29+
</style>
30+
</head>
31+
32+
<body translate="no">
33+
<div id="output"></div>
34+
35+
<script src='https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.18.1/moment.min.js'></script>
36+
<script>
37+
var urlParams;
38+
(function () {
39+
var match,
40+
pl = /\+/g,
41+
search = /([^&=]+)=?([^&]*)/g,
42+
decode = function (s) { return decodeURIComponent(s.replace(pl, " ")); },
43+
query = window.location.search.substring(1);
44+
urlParams = {};
45+
while (match = search.exec(query))
46+
urlParams[decode(match[1])] = decode(match[2]);
47+
})();
48+
var output = document.getElementById("output");
49+
if (urlParams["style"]) output.setAttribute("style", urlParams["style"]);
50+
if (urlParams["bodyStyle"]) document.body.setAttribute("style", urlParams["bodyStyle"]);
51+
var c;
52+
setInterval(
53+
c = function () {
54+
output.innerText = moment().format(urlParams["format"] || 'HH:mm:ssA');
55+
}, 1000);
56+
c();
57+
</script>
58+
</body>
59+
60+
</html>

new.lua

+93
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
-- Script to randomize media playback on scene transitions
2+
-- Place this script in your OBS scripts folder
3+
4+
-- Global variables
5+
local source_name = "RandomAdPackages"
6+
local media_folder = "I:/My Drive/MPS 2024-2025/24 Hour Broadcast/2023 Assets/FINISHED AD PACKAGES/"
7+
local files = {}
8+
9+
-- Create script properties
10+
function script_properties()
11+
local props = obs.obs_properties_create()
12+
13+
-- Add media source selection
14+
local p = obs.obs_properties_add_list(props, "source", "Media Source", obs.OBS_COMBO_TYPE_EDITABLE, obs.OBS_COMBO_FORMAT_STRING)
15+
local sources = obs.obs_enum_sources()
16+
if sources ~= nil then
17+
for _, source in ipairs(sources) do
18+
local name = obs.obs_source_get_name(source)
19+
obs.obs_property_list_add_string(p, name, name)
20+
end
21+
obs.source_list_release(sources)
22+
end
23+
24+
-- Add folder path selection
25+
obs.obs_properties_add_path(props, "folder", "Media Folder", obs.OBS_PATH_DIRECTORY, "", "")
26+
27+
return props
28+
end
29+
30+
-- Script description shown in OBS
31+
function script_description()
32+
return "Randomizes media playback from a folder when transitioning between scenes."
33+
end
34+
35+
-- Save user settings
36+
function script_update(settings)
37+
source_name = obs.obs_data_get_string(settings, "source")
38+
media_folder = obs.obs_data_get_string(settings, "folder")
39+
scan_directory()
40+
end
41+
42+
-- Scan the media directory for compatible files
43+
function scan_directory()
44+
files = {}
45+
if media_folder ~= "" then
46+
local handle = io.popen('dir "' .. media_folder .. '" /b')
47+
if handle then
48+
for file in handle:lines() do
49+
-- Add files with common media extensions
50+
if file:match("%.mp4$") or file:match("%.mov$") or
51+
file:match("%.mkv$") or file:match("%.avi$") or
52+
file:match("%.webm$") then
53+
table.insert(files, file)
54+
end
55+
end
56+
handle:close()
57+
end
58+
end
59+
end
60+
61+
-- Get a random file from the directory
62+
function get_random_file()
63+
if #files > 0 then
64+
local index = math.random(1, #files)
65+
return media_folder .. "\\" .. files[index]
66+
end
67+
return nil
68+
end
69+
70+
-- Called when transitioning between scenes
71+
function on_transition(callback_type)
72+
if callback_type == obs.OBS_FRONTEND_EVENT_SCENE_CHANGED then
73+
local source = obs.obs_get_source_by_name(source_name)
74+
if source ~= nil then
75+
local settings = obs.obs_source_get_settings(source)
76+
local new_file = get_random_file()
77+
78+
if new_file then
79+
obs.obs_data_set_string(settings, "local_file", new_file)
80+
obs.obs_source_update(source, settings)
81+
end
82+
83+
obs.obs_data_release(settings)
84+
obs.obs_source_release(source)
85+
end
86+
end
87+
end
88+
89+
-- Register callback for scene changes
90+
function script_load(settings)
91+
math.randomseed(os.time())
92+
obs.obs_frontend_add_event_callback(on_transition)
93+
end

random_ad_packages.lua

+23-3
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,60 @@
1-
local media_source_name = "RandomAdPackages"
2-
local folder_path = "I:/My Drive/MPS 2024-2025/24 Hour Broadcast/FINISHED AD PACKAGES"
1+
-- Diagnostic print to check if 'obs' is available
2+
print("OBS Lua script loaded. Checking OBS API availability...")
33

4+
-- Ensure OBS API is accessible
5+
if not obs then
6+
print("Error: OBS API not available. Ensure this script is run inside OBS Studio.")
7+
return
8+
end
9+
10+
local media_source_name = "RandomAdPackages" -- Name of the media source in OBS
11+
local folder_path = "I:/My Drive/MPS 2024-2025/24 Hour Broadcast/2023 Assets/FINISHED AD PACKAGES/" -- Path to media files
12+
13+
-- Function to get a random file from the specified folder
414
function get_random_file(folder)
515
local i, files = 0, {}
6-
for file in io.popen('dir "'..folder..'" /b'):lines() do
16+
for file in io.popen('dir "' .. folder .. '" /b'):lines() do
717
i = i + 1
818
files[i] = file
919
end
1020
if i == 0 then return nil end
1121
return files[math.random(i)]
1222
end
1323

24+
-- Event callback for scene changes
1425
function on_event(event)
1526
if event == obs.OBS_FRONTEND_EVENT_SCENE_CHANGED then
1627
local random_file = get_random_file(folder_path)
1728
if random_file then
29+
print("Selected random file: " .. random_file)
1830
local source = obs.obs_get_source_by_name(media_source_name)
1931
if source then
2032
local settings = obs.obs_source_get_settings(source)
2133
obs.obs_data_set_string(settings, "local_file", folder_path .. random_file)
2234
obs.obs_source_update(source, settings)
2335
obs.obs_data_release(settings)
2436
obs.obs_source_release(source)
37+
else
38+
print("Error: Media source not found: " .. media_source_name)
2539
end
40+
else
41+
print("Error: No files found in folder: " .. folder_path)
2642
end
2743
end
2844
end
2945

46+
-- Script description
3047
function script_description()
3148
return "Play a random media file on scene transition."
3249
end
3350

51+
-- Script properties (not used here, but required for the API)
3452
function script_properties()
3553
return nil
3654
end
3755

56+
-- Load the script and register the callback
3857
function script_load(settings)
58+
print("Script loaded successfully. Adding event callback.")
3959
obs.obs_frontend_add_event_callback(on_event)
4060
end

0 commit comments

Comments
 (0)