Skip to content
Ben Meyer-Meisel edited this page May 16, 2024 · 11 revisions

Welcome to the gorillatracker wiki!

links to subpages are in the bar on the right

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"
done

copy to local

scp -r kisz:~/memben/gorillatracker/compressed/ ~/Downloads


































































































































Clone this wiki locally