webcam icon indicating copy to clipboard operation
webcam copied to clipboard

Golang webcam library for Linux

Results 31 webcam issues
Sort by recently updated
recently updated
newest added

The webcam does not work on Pi OS - the latest Raspberry Pi operating system. The "Legacy Camera" must be enabled by hand to make the webcam work. The Raspberry...

Hello, I'm very interested by your package but nothing works for me... Here is a sample code: ```go package main import ( "log" "strings" "github.com/blackjack/webcam" ) func main() { cam,...

allows streaming from 8 bit greyscale cameras was helpful for me in testing this repo ... might be helpful to others!

adds go module support via: ``` go mod init github.com/blackjack/webcam go mod tidy ```

my video is V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE,but the driver not support,do you plan to add this function?

On RPi3 with Ubuntu/arm64 with a Microsoft Studio webcam always times out on cam.WaitForFrame(..) call when using YUYV 4:2:2 and 1920x1080 while 640x480 works just fine. However MJPEG works fine...

Before this patch: ``` ./webcam -s 640x480 Available formats: YUYV 4:2:2 Motion-JPEG Supported frame sizes for format YUYV 4:2:2 320x240 352x288 424x240 640x360 640x480 800x448 960x540 1280x720 Requesting YUYV 4:2:2...

Create a frame type that wraps webcam frames as a Go image type. Build a framer factory registration that allows new image types to be supported, based on the FourCC...

Also included another example program for `ListDevices()`.