libv4l-rs icon indicating copy to clipboard operation
libv4l-rs copied to clipboard

Video4Linux2 bindings for Rust

Results 30 libv4l-rs issues
Sort by recently updated
recently updated
newest added

Updates the requirements on [winit](https://github.com/rust-windowing/winit) to permit the latest version. Release notes Sourced from winit's releases. Winit version 0.30.0 Added Add OwnedDisplayHandle type for allowing safe display handle usage outside...

dependencies
rust

Hi, there is a panic happening when using this lib inside an `i.MX 8M Plus`: ``` v4l-0.14.0/src/control.rs:172:45: called Result::unwrap() on an Err value: () ``` Maybe we are missing part...

Fixes #98 Draft change to make conversion from `v4l2_query_ext_ctrl` to `Description` - and within it `u32` to a `Type` - fallible rather than panicking on unknown type values. This approach...

I am trying to execute [your example](https://github.com/raymanfx/libv4l-rs/blob/master/examples/stream_capture_userptr.rs) but i am getting this error: Stream couldn't started: Os { code: 22, kind: InvalidInput, message: "Invalid argument" } I am using pop-os...

Can you please add functions to convert the stream to a image from the [image crate](https://crates.io/crates/image)? Or is there already a crate/examples which does this easily?

Attempt at handling EINTR in the case of a system call interrupt when polling for events. Fixed an issue with a little program I wrote [asciicam](https://github.com/vilhelmbergsoe/asciicam), which would panic with...

If `v4l` crate expects user to enable either `libv4l` or `v4l2` features then there should probably be some `#[cfg(...)] comile_error!()` stating this if none or both of the features are...

Seems the last successful build there was 2 years ago, and the badge now says "Build: No longer available". Switch the badge over to reflect the CI status on GitHub...

I care about creating a capture stream with a multi-plane camera. I have a basic version of it working, with inspiration from your mplane branch. What works: 1. get/set/list formats...