Skip to content

Instantly share code, notes, and snippets.

@fortunto2
Created October 17, 2020 12:29
Show Gist options
  • Save fortunto2/7159ea864f5373892920230f1a3c08ef to your computer and use it in GitHub Desktop.
Save fortunto2/7159ea864f5373892920230f1a3c08ef to your computer and use it in GitHub Desktop.
RUN canon DSLR as web-camera
#!/bin/sh
# https://askubuntu.com/questions/856460/using-a-digital-camera-canon-as-webcam
sudo modprobe v4l2loopback
gphoto2 --abilities
gphoto2 --stdout --capture-movie | ffmpeg -i - -vcodec rawvideo -pix_fmt yuv420p -threads 0 -f v4l2 /dev/video0
@fortunto2
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment