Created
September 26, 2019 16:17
-
-
Save hugows/39cf477ac7bb38e42478a14321397062 to your computer and use it in GitHub Desktop.
Copy stills from Raspberry Pi and turn into timelapse movie
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
mkdir -p input/ | |
rsync --remove-source-files -a pi@rpi:~/camera/ input/ | |
ffmpeg -r 25 -pattern_type glob -i 'input/*.jpg' -c:v copy timelapse.avi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment