I am not sure to honest.
If I would do that I would likely have to support all kinds of shells / environments to avoid confusion, which I would want to avoid.
You could however "build your own" action type using the
scripting interface.
I assume something like this could do the trick:
Python:
import obspython as obs
# Required by advss helpers
import threading
from typing import NamedTuple
# Required for the custom action
import subprocess
###############################################################################
# Define the settings available for the user for this action type
def get_action_properties():
props = obs.obs_properties_create()
obs.obs_properties_add_text(props, "script_to_run", "Script", obs.OBS_TEXT_MULTILINE)
return props
# Set default values for each setting
def get_action_defaults():
default_settings = obs.obs_data_create()
obs.obs_data_set_default_string(default_settings, "script_to_run", "echo \"hello world!\"")
return default_settings
# The settings for each instance of this action the will be passed in the
# "data" argument
def run_cmd_action(data, instance_id):
script = obs.obs_data_get_string(data, "script_to_run")
# Build a single line command to run
command = " & ".join(script.splitlines())
result = subprocess.run(command, shell=True, capture_output=True, text=True)
obs.script_log(obs.LOG_INFO, result.stdout)
obs.script_log(obs.LOG_INFO, result.stderr)
###############################################################################
def script_load(settings):
# Register the custom action
advss_register_action(
"CMD",
run_cmd_action,
get_action_properties,
get_action_defaults(),
)
def script_unload():
advss_deregister_action("CMD")
###############################################################################
# Advanced Scene Switcher helper functions below:
# Omitted for brevity - can be found here:
# https://github.com/WarmUpTill/SceneSwitcher/blob/master/scripting/examples.py#L195-L461
# Just copy paste to the end of the script
I attached the full script to this message. (never mind, can't do that apparently)
Simply import it in the scripts dialog.
View attachment 112588
View attachment 112587
Let me know if you run into any issues!
I don't think something like this is possible in a single macro.
Just for my understanding: What are your exact concerns with splitting it up into multiple macros?
If you simply don't want to "clutter" the macro list with too many macros you can group those macros:
View attachment 112589
I can't spot any obvious issue in the macro you have set up.
Can you please enable
verbose logging and share an OBS log file of when you are trying to reproduce the issue?
Are you able to receive other events like for example "Stream went live" after going live?