Skip to content

Instantly share code, notes, and snippets.

@3tty0n
Created March 18, 2022 10:41
Show Gist options
  • Select an option

  • Save 3tty0n/71bac543e46895af02dbf1e1a7575acd to your computer and use it in GitHub Desktop.

Select an option

Save 3tty0n/71bac543e46895af02dbf1e1a7575acd to your computer and use it in GitHub Desktop.
#!/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