I have two python scripts A and B
to record(and process) video from 2
cameras. When I start these scripts, a new python process starts to show the live feed. Now while recording, I send results from both A and B
to script C
. Script C decides which video feed should be shown(A or B).
How can I achieve this? Basically, all I want to do is to control the visibility of the Python processes with a command.
Thanks for the help.