Skip to content

Commit b996ba3

Browse files
authored
Updated source filter to include new OBS avcapture sources
Adds support for the new video capture sources that have the identifier like "macos-avcapture"
1 parent 52d85a7 commit b996ba3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/obs_tally_light.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def list_video_source_names():
131131
if sources is not None:
132132
for source in sources:
133133
source_id = obs.obs_source_get_id(source)
134-
if re.search("^av_capture.*|^droidcam.*|^decklink-input.*|^ndi_source.*", source_id):
134+
if re.search("^av_capture.*|^droidcam.*|^decklink-input.*|^ndi_source.*|.*avcapture$", source_id):
135135
source_name = obs.obs_source_get_name(source)
136136
video_source_names.append(source_name)
137137

0 commit comments

Comments
 (0)