Skip to content

Instantly share code, notes, and snippets.

@companje
Last active March 3, 2020 19:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save companje/7fb48a37db841c9e29d354df6dfd2985 to your computer and use it in GitHub Desktop.
Save companje/7fb48a37db841c9e29d354df6dfd2985 to your computer and use it in GitHub Desktop.
Kurokesu C1 Pro webcam cam camera (with modified firmware) + 1.25mm FishEye lens working in Processing
import processing.video.*;
Capture cam;
void setup() {
size(640, 480, P3D);
cam = new Capture(this, 640, 480, "i Zone 1080p Starvis Camera");
cam.start();
}
void draw() {
if (cam.available() == true) {
cam.read();
}
image(cam, 0, 0);
}
@companje
Copy link
Author

companje commented Oct 10, 2019

@companje
Copy link
Author

companje commented Mar 3, 2020

https://superuser.com/questions/1287366/open-webcam-settings-dialog-in-windows

Find the exact name of your device, either from Control Panel | Devices and Printers or by running ffmpeg:

C:\utils>ffmpeg -list_devices true -f dshow -i dummy -hide_banner
[dshow @ 0000022fd7ac8440] DirectShow video devices (some may be both video and audio devices)
[dshow @ 0000022fd7ac8440] "USB 2.0 CAMERA"
Run ffmpeg to show the dialog:

ffmpeg -f dshow -show_video_device_dialog true -i video="i Zone 1080p Starvis Camera"

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