Skip to content

Instantly share code, notes, and snippets.

View theDrGray's full-sized avatar

Glenn Snyder theDrGray

View GitHub Profile
#!/bin/bash
# Variables
INPUT_VIDEO="./input.mov"
OVERLAY_VIDEO="./overlay.mov"
OUTPUT_VIDEO_FILENAME="output.mov"
OVERLAY_START="0"
# Delete existing output file if it exists
if [ -f $OUTPUT_VIDEO_FILENAME ]; then