You are not logged in.

#1 2011-04-29 19:30:43

0sz
Member
Registered: 2011-04-29
Posts: 8

[SOLVED] Webcam is upside down and headphone jacks arent working

Hey

I just recently switched over from Ubuntu to Arch. The most common fixes I know to fix this problem isnt working.

Last edited by 0sz (2011-04-29 21:01:17)

Offline

#2 2011-04-29 19:39:56

lucke
Member
From: Poland
Registered: 2004-11-30
Posts: 4,018

Re: [SOLVED] Webcam is upside down and headphone jacks arent working

You might want to provide more info, particularly the hardware, software and things tried.

Last edited by lucke (2011-04-29 19:41:33)

Offline

#3 2011-04-29 19:49:39

0sz
Member
Registered: 2011-04-29
Posts: 8

Re: [SOLVED] Webcam is upside down and headphone jacks arent working

lsusb

Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 007 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 008 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 002: ID 0b05:175b ASUSTek Computer, Inc. Laptop OLED Display
Bus 002 Device 002: ID 04f2:b012 Chicony Electronics Co., Ltd 1.3 MPixel UVC Webcam
Bus 002 Device 003: ID 0bda:8187 Realtek Semiconductor Corp. RTL8187 Wireless Adapter

Skype is upside down the fix I know of is "LD_PRELOAD=/usr/lib/libv4l/v4l1compat.so skype"

"options snd-hda-intel model=auto" is what i know to add in alsa_base.conf but I don't have that in my modprobe.d directory

Offline

#4 2011-04-29 19:51:54

0sz
Member
Registered: 2011-04-29
Posts: 8

Re: [SOLVED] Webcam is upside down and headphone jacks arent working

btw when i use LD_PRELOAD=/usr/lib/libv4l/v4l1compat.so skype i get this ERROR: ld.so: object '/usr/lib32/libv4lconvert.so.0' from LD_PRELOAD cannot be preloaded: ignored.

Last edited by 0sz (2011-04-29 20:43:33)

Offline

#5 2011-04-29 20:32:12

hiciu
Member
Registered: 2010-08-11
Posts: 84

Re: [SOLVED] Webcam is upside down and headphone jacks arent working

0sz wrote:

"options snd-hda-intel model=auto" is what i know to add in alsa_base.conf but I don't have that in my modprobe.d directory

Thanks! I have this problem too and I didn't even know how to debug it :D. Try `sudo modprobe snd-hda-intel model=auto`.

Easiest way to make it permament would be to add "modprobe snd-hda-intel model=auto" to /etc/rc.local. The right way is to append "options snd-hda-intel model=auto" to /etc/modprobe.d/modprobe.conf (but I'm not sure about that, you need to check it). You may have to add /etc/modprobe.d/modprobe.conf to FILES in /etc/mkinitcpio.conf and regenerate initcpio with `mkinitcpio -p kernel26` to make it work, I'm not sure about that too.

edit: This upside-down video bug is here because in few asus laptops models webcam is mounted upside down (http://www.google.pl/search?q=site:vip. … pside+down). To fix this in skype you need lib32-v4l-utils if you are on x86_64 or v4l-utils if you are on i686. For x86_64:

pacman -S multilib/lib32-v4l-utils
LD_PRELOAD=/usr/lib32/libv4l/v4l1compat.so skype

For i686:

pacman -S v4l-utils
LD_PRELOAD=/usr/lib/libv4l/v4l1compat.so skype

Last edited by hiciu (2011-04-29 20:46:02)

Offline

#6 2011-04-29 20:53:04

0sz
Member
Registered: 2011-04-29
Posts: 8

Re: [SOLVED] Webcam is upside down and headphone jacks arent working

I'm trying all this out now....., yeah I have an Asus G50VT 64bit (forgot to add this)

Offline

#7 2011-04-29 21:00:12

0sz
Member
Registered: 2011-04-29
Posts: 8

Re: [SOLVED] Webcam is upside down and headphone jacks arent working

THANK YOU SOOOOOOOOOOOO MUCH!!!! everything is working the way it should.

Offline

#8 2011-04-29 22:03:49

0sz
Member
Registered: 2011-04-29
Posts: 8

Re: [SOLVED] Webcam is upside down and headphone jacks arent working

Just thought I'd add this info for anyone else who reads this

#x86_64: pacman -S multilib/lib32-v4l-utils  
#i686: pacman -S v4l-utils  

create a bash script to load it automatically

!#/bin/bash

x86_64: LD_PRELOAD=/usr/lib32/libv4l/v4l1compat.so skype &
i686: LD_PRELOAD=/usr/lib/libv4l/v4l1compat.so skype &

exit 0

name it what ever you want besides skype. I use "skyp" then save it to desktop

then

 sudo mv /home/"username"/Desktop/"name of file" /usr/local/bin

after which you must mark excecutable

 sudo chmod +x /usr/local/bin/"name of file"

when done open console and type in the name

Last edited by 0sz (2011-04-29 22:09:37)

Offline

Board footer

Powered by FluxBB