Skip to content

Instantly share code, notes, and snippets.

@mowings
Last active December 3, 2021 08:34
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mowings/7210816c88fb3328b3ad to your computer and use it in GitHub Desktop.
Save mowings/7210816c88fb3328b3ad to your computer and use it in GitHub Desktop.
Raspberry Pi raspivid output to mp4
# Stream 60 seconds of video to an mp4 file
sudo raspivid -o - -t 60000 -ex night -br 50 -w 1920 -h 1080 -rot 279 -fps 8 | sudo ffmpeg -r 8 -i - -y -vcodec copy /mnt/pi/camera/foo.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment