NextPVR Forums

Full Version: Adaptec avc-3610 device not listed, but detected by OS
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I have an Adaptec 3610/hp hooked up to a Ubuntu 16 machine because they only ever supplied 32 bit drivers, and 32 bit win 7 bsod when booting from an external hard drive
Is There any way to get this working? If not as a tv tuner then as a capture device? Nextpvr says i have no devices, only iptv. vlc wont even capture from my webcam, but this is what i get from terminal
v4l2-ctl --list-devices
HP Truevision HD (usb-0000:00:13.2-1):
/dev/video0



lsusb says
Bus 005 Device 007: ID 03f3:0094 Adaptec, Inc. eHome Infrared Receiver
Bus 005 Device 006: ID 03f3:0090 Adaptec, Inc.
Bus 005 Device 005: ID 03f3:0044 Adaptec, Inc.

dmesg gets this
[ 4018.244170] usb 5-2.3: Product: eHome Infrared Transceiver
[ 4018.244174] usb 5-2.3: Manufacturer: Adaptec
[ 4018.244179] usb 5-2.3: SerialNumber: AD000oud
[ 4020.137071] usb 4-3: USB disconnect, device number 4
[ 4020.610965] usb 4-3: new full-speed USB device number 5 using ohci-pci
[ 4020.776157] usb 4-3: New USB device found, idVendor=138a, idProduct=0018
[ 4020.776166] usb 4-3: New USB device strings: Mfr=0, Product=0, SerialNumber=1
[ 4020.776172] usb 4-3: SerialNumber: d74ce759a381

[    2.120967] usb 5-2: New USB device found, idVendor=03f3, idProduct=0044
[    2.120973] usb 5-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    2.120977] usb 5-2: Product: AVC-3610
[    2.120979] usb 5-2: Manufacturer: Adaptec
[    2.120982] usb 5-2: SerialNumber: 5290002215
NextPVR only supports digital devices. If you want to support an analog device for basic standard analog NTSC capture you will need to create an extra.

From v4l2-ctl I can't tell if /dev/video0 is your camera, but I think it is so I don't think the Adaptec is even being detected. The script you call might be as simple as this but it will depend on may factors.

Code:
irbalster scripts
ffmpeg -v panic -i file:///dev/video0 -codec copy -f mpegts -

Beyond that I don't support creating command line options for ffmpeg or feeding ffmpeg in an extra. You may need to transcode video add audio devices etc. v4l2-ctrl -l might give you some hints on the capabilities.

Once you can have an ffmpeg command line that can create a supported mpeg-ts file in real time (h264 or mpeg2video with aac, mp3 or mpeg2audio) then we can explain the extra.

Martin