Last active
May 5, 2018 20:04
-
-
Save max-mapper/a2f575577b6b8305cc6f9ce58b7a6f22 to your computer and use it in GitHub Desktop.
capture rtsp and create movie (ffmpeg)
This file contains 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
# enable multicast route so ffmpeg can resolve 2nd interface data | |
sudo route add -net 239.0.0.0/8 dev eth0 | |
# grab 1 frame of video as jpg | |
run-every 60 ffmpeg -i udp://@239.255.42.42:5004 -f image2 -frames:v 1 -strftime 1 "%F-%H-%M-%S.jpg" | |
# convert jpgs to movie | |
rm -rf cropped | |
mkdir cropped | |
mogrify -path cropped/ -extract 1400x990+0+0 *.jpg | |
ffmpeg -framerate 50 -f image2 -pattern_type glob -i '*.jpg' -vf fps timelapse.mp4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment