Skip to content

Instantly share code, notes, and snippets.

@shalak
shalak / mov_to_mp4.sh
Created February 5, 2025 10:57
MacOS script for converting MOV to MP4
#!/bin/bash
LOG_FILE="$HOME/Library/Logs/mov_to_mp4.log"
# Function to log messages and send macOS notifications
log_and_notify() {
local message="$1"
local emoji="$2"
echo "$(date +'%Y-%m-%d %H:%M:%S') $emoji $message" | tee -a "$LOG_FILE"
osascript -e "display notification \"$message\" with title \"MOV to MP4 Converter\""