-
Notifications
You must be signed in to change notification settings - Fork 1
Home
Ben Meyer-Meisel edited this page May 16, 2024
·
11 revisions
Repo for Code running on the Coral Dev-board
Quick wins:
Compress videos on server
mkdir -p compressed
for file in video_output/*; do
filename=$(basename "$file")
ffmpeg -y -i "$file" -vf "scale=1280:720" -c:v libx264 -crf 23 -preset veryfast "compressed/${filename%.mp4}.mp4"
donecopy to local
scp -r kisz:~/memben/gorillatracker/compressed/ ~/Downloads
