UVC支持的摄像头列表_一加手机摄像头兼容uvc_皮熊的博客-程序员秘密

技术标签: linux驱动  

0c45:62f1 Avatec CMA-L688
HueHD
Sonix Technology
HueHD
[11]

http://www.ideasonboard.org/uvc/#footnote-11



终于找到了一个榜上有名的摄像头.

[ 1668.113785] usb 3-1: new high-speed USB device number 3 using xhci_hcd
[ 1668.174056] usb 3-1: New USB device found, idVendor=0c45, idProduct=62f1
[ 1668.174066] usb 3-1: New USB device strings: Mfr=2, Product=1, SerialNumber=0
[ 1668.174072] usb 3-1: Product: USB 2.0 Camera
[ 1668.174076] usb 3-1: Manufacturer: Sonix Technology Co., Ltd.
[ 1668.305693] Linux video capture interface: v2.00
[ 1668.327528] 3:3:1: cannot get freq at ep 0x84
[ 1668.334247] usb_audio: Warning! Unlikely big volume range (=3328), cval->res is probably wrong.
[ 1668.334249] usb_audio: [2] FU [Mic Capture Volume] ch = 1, val = 4608/7936/1<6>[ 1668.334411] usbcore: registered new interface driver snd-usb-audio
[ 1668.334423] uvcvideo: Found UVC 1.00 device USB 2.0 Camera (0c45:62f1)
[ 1668.338263] input: USB 2.0 Camera as /devices/pci0000:00/0000:00:14.0/usb3/3-1/3-1:1.0/input/input11
[ 1668.338328] usbcore: registered new interface driver uvcvideo
[ 1668.338329] USB Video Class driver (1.1.1)
[ 1668.400589] 3:3:1: cannot get freq at ep 0x84
[ 1668.423707] 3:3:1: cannot get freq at ep 0x84
[ 1668.463012] 3:3:1: cannot get freq at ep 0x84
[ 1668.486077] 3:3:1: cannot get freq at ep 0x84


Download

Linux 2.6.26 and newer includes the Linux UVC driver natively. You will not need to download the driver sources manually unless you want to test a newer version or help with development.

Source code for the Linux UVC kernel driver is maintained in a GIT repository on linuxtv.org.

  • If you are an end-user the easiest way to retrieve an up-to-date driver is to clone the media build git repository located at http://git.linuxtv.org/media_build.git. The code includes support for older kernel versions, but might lag behind the uvcvideo git repository by a few days.

    Instructions to build and install drivers from the linuxtv.org trees are available on linuxtv.org.

  • If you are a developer, or if you're interested in tracking the Linux UVC driver, you probably want to get a local copy of the source code repository. To help save bandwidth, please follow these instructions:
    git clone git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git uvcvideo
    cd uvcvideo
    git remote add uvcvideo git://linuxtv.org/pinchartl/uvcvideo.git
    git remote update
    git checkout -b uvcvideo-master uvcvideo/uvcvideo-next

The old SVN repository has been archived and isn't available on the SVN server anymore. The repository archive can be downloaded here.


版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://blog.csdn.net/ppp2006/article/details/51786001

智能推荐

echo的用法_echo用法_白雪滑落树梢的博客-程序员秘密

文章目录一、常用选项二、常用的转义字符三、使用echo命令打印特效文字一、常用选项echo -n 表示不换行输出echo -e 输出转义字符,将转义后的内容输出到屏幕上二、常用的转义字符字符含义\b转义后相当于按退格键(backspace) ,但前提是"\b"后面存在字符; “\b"表示删除前一一个字符,”\b\b" 表示删除前两个字符。\c不换行输出,在"\c"后面不存在字符的情况下,作用相当于echo -n;但是当"\c"后面仍然存在字符时,"\c.

Gateway网关服务搭建(4)_不二天次的博客-程序员秘密

目录一、搭建方式二、搭建过程三、上述总结一、搭建方式Springboot版本:2.3.1.RELEASESpringCloud版本:Hoxton.SR9项目截图:二、搭建过程pom.xml文件:&lt;?xml version="1.0" encoding="UTF-8"?&gt;&lt;project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance

win10 自带ftp server 搭建_村东边的小水坑的博客-程序员秘密

win10自带了ftp和IIS 服务,可以自己搭建ftp server用于局域网文件共享。启用FTP/IIS服务控制面板 &gt; 程序 &gt; 启用或关闭Windows功能 &gt;2.打开IIS3.添加FTP站点4.防火墙设置...

javaScript链式调用原理以及加法实现_IT 哈的博客-程序员秘密

相信很多小伙伴在面试的过程中都被问过js链式调用的原理,甚至有些面试官还会让你用其实现例如加法操作,举例:add(1)(2)(3) //6第一次看到这个题目时,或许你没有什么头绪,不要紧,让我们慢慢来;首先,大家还是否记得在使用jQuery时,我们会经常这样去操作一个jQuery节点$(&quot;elem&quot;).show().css(&quot;color&quot;,&quot;red&quot;);这是怎么做到的?原理很简...

PX4相关概念_px4 mpc_北络的博客-程序员秘密

QGroundControlQGroundControl provides full flight control and vehicle setup for PX4 or ArduPilot powered vehicles. It provides easy and straightforward usage for beginners, while still delivering hig...

tp5控制器内调用其他控制器方法并传参_程序员大柱的博客-程序员秘密

//请求的主要内容 $info = [ $this-&gt;location['province'], $this-&gt;location['city'], $this-&gt;location['district'] ]; dump(action('api/agent' ,...

随便推点

编译android源码报错:build/envsetup.sh: 1: Syntax error: "(" unexpected_"./build_env_init: syntax error: \"(\" unexpected"_harvey2008的博客-程序员秘密

编译android源码报错:build/envsetup.sh: 1: Syntax error: "(" unexpected编译android源码时报错:build/envsetup.sh: 1: Syntax error: "(" unexpected解决方法:执行$sudo dpkg-reconfigure dash命令,并选择“否”

RNN结构及反BPTT向传播算法_NeverMore_7的博客-程序员秘密

写在前面传统的人工神经网络(Artificial Neural Network,ANN)存在很多局限性,在不断发展中,出现了真对图像数据的卷积神经网络(Convolutional Neural Network,CNN),解决了图像数据大,权重参数过多难以训练的问题。以及针对有序序列数据的循环神经网络(Recurrent neural Network,RNN),不谋而合的是在这两种网络中都采用了权重共

Java:中奖问题_吃个西瓜吧。的博客-程序员秘密

今年公司年会的奖品特别给力,但获奖的规矩却很奇葩:首先,所有人员都将一张写有自己名字的字条放入抽奖箱中;待所有字条加入完毕,每人从箱中取一个字条;如果抽到的字条上写的就是自己的名字,那么“恭喜你,中奖了!”现在告诉你参加晚会的人数,请你计算有多少概率会出现无人获奖?因为是不放回问题,所以结果共有N的阶乘,无人中奖的方式则可以参考错排算法问题,错排的结果/总结果就是无人中奖的概率。...

JsonArray转换为List_jsonarray cast list_Aige_cang的博客-程序员秘密

JsonArray转换为List服务器返回数据时返回的字符串不是对象而是一个数组时,我们在解析时使用到的Javabean时,不能直接使用Bean.class的方式来使用Gson直接转换为对象,服务器的同事说只能使用手工解析了,当时一脸懵逼的感觉,下面的字符串是精简过了的,正常的字符串有差不多一百个字段,办法总是有的,程序员的习惯,只是在每一次做体力活的时候,总是有一种想法,就不能简单点吗?下班

电位器mcp4561调试记录---stm32,I2C通信_mcp4531 stm32_西皮南子的博客-程序员秘密

所用芯片是mcp4561-503,看数据手册知此型号是8位,对应257步默认值是80h对应电阻值是25k只有wiper0,没有wiper1.I2C地址:下图中mcp45x1的地址是0101 11+A0,从电路图上看A0引脚接地,所以地址是0101 110+R/W实际取到的读取数据波形:I2C.c文件/* Includes ---------...

Unity解耦合-事件的监听与广播系统_unit test 解耦合_FutureDr的博客-程序员秘密

Unity解耦合-事件的监听与广播系统目的解决方法测试目的解决代码之间耦合性问题解决方法利用委托封装事件方法,然后利用广播和监听事件来实现解耦委托脚本CallBack.cs//委托类,自己进行委托封装,可以添加多个参数public delegate void CallBack();public delegate void CallBack&lt;T&gt;(T arg);public delegate void CallBack&lt;T, X&gt;(T arg1, X arg2)

推荐文章

热门文章

相关标签