How doi I get my Creative ULTRA webcam in ZOOM?

Questions about Wine on Linux
Locked
lawrencek
Level 1
Level 1
Posts: 7
Joined: Sun Jan 31, 2021 5:47 pm

How doi I get my Creative ULTRA webcam in ZOOM?

Post by lawrencek »

I can get ZOOM to connect with my Creative Ultra web cam, and its light comes on. But there is no image.
Perhaps I ned a driver and there does not seem to be one for Debian.

There seems to be a way to use windows drivers, if you could remind me how to do it.

Thanks

Lawrence
jkfloris
Level 12
Level 12
Posts: 3141
Joined: Thu Aug 14, 2014 10:10 am

Re: How doi I get my Creative ULTRA webcam in ZOOM?

Post by jkfloris »

Does the webcam work in Debian? For example with cheese?
lawrencek
Level 1
Level 1
Posts: 7
Joined: Sun Jan 31, 2021 5:47 pm

Re: How doi I get my Creative ULTRA webcam in ZOOM?

Post by lawrencek »

I get /dev/video when it is connected

hwinfo shows the camera, and I ran the modprobe:

UDI: /org/freedesktop/Hal/devices/usb_device_46d_8da_noserial_if2
Unique ID: 4ajv.vE+cdFBwClB
Parent ID: k4bc._Mkd+LmXb03
SysFS ID: /devices/pci0000:00/0000:00:11.0/0000:02:00.0/usb1/1-1/1-1:1.2
SysFS BusID: 1-1:1.2
Hardware Class: unknown
Model: "Logitech QuickCam Messanger"
Hotplug: USB
Vendor: usb 0x046d "Logitech, Inc."
Device: usb 0x08da "QuickCam Messanger"
Revision: "1.00"
Driver: "snd-usb-audio"
Driver Modules: "snd_usb_audio"
Speed: 12 Mbps
Module Alias: "usb:v046Dp08DAd0100dc00dsc00dp00ic01isc02ip00"
Driver Info #0:
Driver Status: gspca_zc3xx is active
Driver Activation Cmd: "modprobe gspca_zc3xx"
Config Status: cfg=new, avail=yes, need=no, active=unknown
Attached to: #8 (Hub)</source>

Still no success

Lawrence
User avatar
Bob Wya
Level 12
Level 12
Posts: 3068
Joined: Sat Oct 16, 2010 7:40 pm

Re: How doi I get my Creative ULTRA webcam in ZOOM?

Post by Bob Wya »

@Lawrence

You could try something like:

Code: Select all

WINEDEBUG=+qcap wine ???.exe &>~/wine_v4l_log.txt
- to test that your web camera is recognised by the Video 4 Linux subsystem in Wine.

See: WineHQ FAQ: 10.1.1 How can I get a debugging log (a.k.a. terminal output)?

Bob
lawrencek
Level 1
Level 1
Posts: 7
Joined: Sun Jan 31, 2021 5:47 pm

Re: How doi I get my Creative ULTRA webcam in ZOOM?

Post by lawrencek »

I tried the command, it did not like the ???. What is the ???
I am wanting zoom in linux.

03c:err:service:process_send_command service protocol error - failed to write $
003c:fixme:service:scmdatabase_autostart_services Auto-start service L"PlugPlay$
0024:err:module:process_init L"C:\\windows\\system32\\???.exe" not found

Lawrence
User avatar
Bob Wya
Level 12
Level 12
Posts: 3068
Joined: Sat Oct 16, 2010 7:40 pm

Re: How doi I get my Creative ULTRA webcam in ZOOM?

Post by Bob Wya »

lawrencek wrote: Tue Feb 02, 2021 11:56 am I tried the command, it did not like the ???. What is the ???
I am wanting zoom in linux.

Code: Select all

03c:err:service:process_send_command service protocol error - failed to write $
003c:fixme:service:scmdatabase_autostart_services Auto-start service L"PlugPlay$
0024:err:module:process_init L"C:\\windows\\system32\\???.exe" not found
Lawrence
@Lawrence

The ???, in the executable name, is just a placeholder.
That's why a gave you a link to the appropriate section of the WineHQ Wiki, which shows how to launch a Wine command from the terminal.
You'd need to work out what the Creative utility executable path is.
Then change directory and run the executable directly.

Something like:

Code: Select all

find "${WINEPREFIX:-${HOME%/}/.wine}/drive_c" -iname "*.exe" | grep 'Program Files'
might help (to find executables - installed in your WINEPREFIX)!

It would be a good idea to get in the habit of using the forum Code tags to delimit terminal commands and output.
The </> button above the (full) forum edit box.

Bob
Locked