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
0 commit comments