Created
March 18, 2022 10:41
-
-
Save 3tty0n/71bac543e46895af02dbf1e1a7575acd to your computer and use it in GitHub Desktop.
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/sh | |
| trap break INT | |
| while true | |
| do | |
| gphoto2 --stdout --capture-movie | ffmpeg -i - -vcodec rawvideo -pix_fmt yuv420p -threads 0 -f v4l2 /dev/video10 | |
| done | |
| trap - INT | |
| echo "Exitted" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment