We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm trying to connect to a VHS to Digital Converter device (like this device) on a Linux. The device is visible, but there are no characteristics.
foreach (var dev in devices.EnumerateDescriptors()) { Console.WriteLine($"{dev.Name}, {dev.Description}, length={dev.Characteristics.Length}"); }
The text was updated successfully, but these errors were encountered:
After a little research, it turned out that this is happening because getting VIDIOC_ENUM_FRAMEINTERVALS does not work. How can I solve this problem?
Sorry, something went wrong.
FlashCap/FlashCap.Core/Devices/V4L2Devices.cs
Line 127 in 227cca1
You mean that this ioctl always gives error?
ioctl
Yes. The line 150 (Console.Write) is unreachable.
No branches or pull requests
I'm trying to connect to a VHS to Digital Converter device (like this device) on a Linux.
The device is visible, but there are no characteristics.
foreach (var dev in devices.EnumerateDescriptors()) { Console.WriteLine($"{dev.Name}, {dev.Description}, length={dev.Characteristics.Length}"); }
The text was updated successfully, but these errors were encountered: