This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# requires the obs-websocket-py python library | |
import obswebsocket | |
import time | |
from obswebsocket import obsws, requests | |
queue = [ | |
"name of scene 1", | |
"name of scene 2", | |
"name of scene 3", | |
"name of scene 4", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
START=$(date +%s) | |
# Add the command/process here that you want to measure | |
END=$(date +%s) | |
SECONDS=$((END - START)) | |
echo "The process took ${SECONDS} seconds to complete." |