UVC Camera / Usb Camera with driver from userspace
1.9.6
Attention! To install these applications (APKs) you need a split application manager (SAI). Learn more!
Type Variant Architecture Minimum Version Screen DPI
1.9.6
98 APKs
universal Android 4.0.3
120 - 640dpi
Size: 17.79 MB
Certificate: d16f31d4a7d18934e09a17f51f3632c74cdc4cb1
SHA1 signature: e622445918e48b7a6e09ef162ca0d3aa2cde1443
Architecture: universal
Screen DPI: ldpi (120dpi), mdpi (160dpi), tvdpi (213dpi), hdpi (240dpi), xhdpi (320dpi), xxhdpi (480dpi), xxxhdpi (640dpi)
Device: phone
1.9.6
98 APK
x86_64 Android 4.0.3
160 - 640dpi
Size: 6.54 MB
Certificate: d16f31d4a7d18934e09a17f51f3632c74cdc4cb1
SHA1 signature: 2807d23eb112fe25aa3cb7983a212c52a4240fb7
Architecture: x86_64
Screen DPI: mdpi (160dpi), hdpi (240dpi), xhdpi (320dpi), xxhdpi (480dpi), xxxhdpi (640dpi)
Device: phone
1.9.6
98 APK
x86 Android 4.0.3
160 - 640dpi
Size: 6.52 MB
Certificate: d16f31d4a7d18934e09a17f51f3632c74cdc4cb1
SHA1 signature: 6899e6f3b584b3bb05ef81c8d72b4832b46c8f3c
Architecture: x86
Screen DPI: mdpi (160dpi), hdpi (240dpi), xhdpi (320dpi), xxhdpi (480dpi), xxxhdpi (640dpi)
Device: phone
1.9.6
98 APK
arm64-v8a Android 4.0.3
160 - 640dpi
Size: 6.24 MB
Certificate: d16f31d4a7d18934e09a17f51f3632c74cdc4cb1
SHA1 signature: d5e92614f3249c9d7156515be0d09a9cf53db6e5
Architecture: arm64-v8a
Screen DPI: mdpi (160dpi), hdpi (240dpi), xhdpi (320dpi), xxhdpi (480dpi), xxxhdpi (640dpi)
Device: phone
1.9.6
98 APK
armeabi-v7a Android 4.0.3
160 - 640dpi
Size: 5.72 MB
Certificate: d16f31d4a7d18934e09a17f51f3632c74cdc4cb1
SHA1 signature: 8f4dd32d91d4587a6554a3706a5a9e5b3c036d31
Architecture: armeabi-v7a
Screen DPI: mdpi (160dpi), hdpi (240dpi), xhdpi (320dpi), xxhdpi (480dpi), xxxhdpi (640dpi)
Device: phone
2 downloads Get it on Google Play
Screenshot app 0Screenshot app 1Screenshot app 2Screenshot app 3Screenshot app 4Screenshot app 5Screenshot app 6Screenshot app 7Screenshot app 8

Download UVC Camera / Usb Camera with driver from userspace APK free

App for using a video camera over usb from userspace.

Android-UVC-Camera

The app connects to a usb camera from your Android Device. (OTG cabel or OTG Hub needed)

This Project was built to perform an Isochronous Video Stream for all Android Devices (Above 4.1 Ice Cream Sandwich)(Mediathek Devices too) with UVC Cameras.
The program uses your userspacr usb device driver to perform an isochronous transfer with your camera device.

Follow this way to set up your own userspace device driver:

First you have to set up all camera settings for your device. The program then saves the values and you can restore them later or overwrite them with other values. Use the "Edit/Save/Restore" Button to adjust the values.
Use the automatic camera serarch to find and set up the camera.
Explaination:

When the automatic search succeeds, you first set up the MAXIMAL PACKET SIZE. If your device is a mediathek device, you may have to lower the value for the max packet size.
The Value PACKETS PER REQUEST defines the Number of the Packets sended to the device: One packet has a size of 3000 bytes and you use 16 packets at one time for sending. Here you define the amount of Bytes which were sent.
Next thing are the USB REQUEST BLOCKS (activeUrb): These are in relation to the max packet size. You have to find here the right values for your device and control the output on the screen under the menupoint "Isoread".
Some typically values for Qualcom Devices are: 8 for the activeUrbs and 16 Packets per Request....
The first thing of the method Isoread is a Controltransfer to the camera device:

If the controlltransfer is successful, than you are ready to go.

Next take a look at the frames.

When you receive identically and long frames, you can proceed to the method Isostream, where the frames were displayed on your screen.

To know how big be a Frame should be, you can look at the output of the controll transfer of the camera in the log: maxVideoFrameSize, This value is returned from the camera and should be the valid frame size (The value is calculated by Imagewidth x Imagehight x 2).

The IsochronousRead1 class shows you how the frames are structered by the camera. Different camerasetting == Different Frame structers. Try it out with different setting and look at the output. The eof hint shows the framesize in the log. For valid camera settings the size should be the same as maxFrameSize value of the controlltransfer.

Output method Isoread: (Controltransfer) Thirst the program will send a controlltransfer to your camera device. The output of it looks as following: Initial streaming parms: hint=0x0 format=1 frame=1 frameInterval=2000000 keyFrameRate=0 pFrameRate=0 compQuality=0 compWindowSize=0 delay=0 maxVideoFrameSize=0 maxPayloadTransferSize=0 Probed streaming parms: hint=0x0 format=1 frame=1 frameInterval=2000000 keyFrameRate=0 pFrameRate=0 compQuality=0 compWindowSize=0 delay=0 maxVideoFrameSize=614400 maxPayloadTransferSize=3000 Final streaming parms: hint=0x0 format=1 frame=1 frameInterval=2000000 keyFrameRate=0 pFrameRate=0 compQuality=0 compWindowSize=0 delay=0 maxVideoFrameSize=614400 maxPayloadTransferSize=3000 The first line are the values you set in the program, to connect the camera. (Initial streaming parms}

The secound line are the values from the camera, which the camera returned from your values.

And in the third line are the new saved and final values from the usb camera.

Outpuf from the first Method: isoRead:

EOF frameLen=10436. --> For Example here a frame ends with a length of 10436 wich is not 614400 as we expected from the controltransfer, so you may have to change some values of you program to get a valid frame size.
Show more

What´s new

Bug fix
2.6

Rating this app

Rate now
Currently rated 2.6 stars

More info

Updated in 2021-08-02
Size 2.46 MB
Current version 1.9.6
Requires Android 4.0.3 and up
Content Rating Everyone
Offered By Peter Stoiber
UVC Camera / Usb Camera with driver from userspace
Peter Stoiber
Showing permissions for all versions of this app
This app has access to:
Updates to UVC Camera / Usb Camera with driver from userspace may automatically add additional capabilities within each group. Learn more

APKs installer

UVC Camera / Usb Camera with driver from userspace
Peter Stoiber
icon-app-rating
Rate the app by selecting the stars