marcelo.olsi
(usa Ubuntu)
Enviado em 11/03/2009 - 12:00h
Olá, estou tentando instalar a placa de captura PixelView Xtreme Global TV, mas não consigo.
$lspci | grep CX
05:01.0 Multimedia video controller: Conexant Systems, Inc. CX23880/1/2/3 PCI Video and Audio Decoder (rev 05)
05:01.1 Multimedia controller: Conexant Systems, Inc. CX23880/1/2/3 PCI Video and Audio Decoder [Audio Port] (rev 05)
$lsmod | grep cx
cx88xx, cx8800
$dmesg | grep cx
[ 1779.028009] cx88[0]/0: unknown tv audio mode [0]
[ 1779.252009] cx88[0]/0: unknown tv audio mode [0]
[ 1789.665778] cx88_audio 0000:05:01.1: PCI INT A disabled
[17645.113513] cx88[0]/0: unknown tv audio mode [0]
[17656.785013] cx88[0]/0: unknown tv audio mode [0]
[17671.037012] cx88[0]/0: unknown tv audio mode [0]
[17701.109105] cx8800 0000:05:01.0: PCI INT A disabled
[17713.712938] cx88/0: cx2388x v4l2 driver version 0.0.6 loaded
[17713.712993] cx8800 0000:05:01.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[17713.713437] cx88[0]: subsystem: 1554:4949, board: Hauppauge Nova-SE2 DVB-S [card=38,insmod option]
[17713.713448] cx88[0]: TV tuner type 1, Radio tuner type -1
[17713.837422] tuner' 0-0061: chip found @ 0xc2 (cx88[0])
[17713.895591] cx88[0]: warning: unknown hauppauge model #0
[17713.895594] cx88[0]: hauppauge eeprom: model=0
[17713.896940] input: cx88 IR (Hauppauge Nova-SE2 DVB as /devices/pci0000:00/0000:00:1e.0/0000:05:01.0/input/input6
[17713.928621] cx88[0]/0: found at 0000:05:01.0, rev: 5, irq: 17, latency: 64, mmio: 0xfc000000
[17713.928704] cx88[0]/0: registered device video0 [v4l2]
[17713.928748] cx88[0]/0: registered device vbi0
[17743.076015] cx88[0]/0: unknown tv audio mode [0]
[17757.199074] cx88[0]/0: unknown tv audio mode [0]
(à exceção dos números no começo de cada linha, ele imprime isto igualmente, várias vezes... peguei só um bloco de repetição)
Tentei rodar um script para encontrar o video card, mas não deu certo:
#!/bin/sh
for j in 3 4 5 19 16 37 50 70 72 73 74
do
for i in 1 2 3 5 17 23 24 38 41 42 43 44
do
echo "removendo cx88_alsa: " >> saida.txt 2>>saida.txt
rmmod -fv cx88_alsa >> saida.txt 2>>saida.txt
echo "removendo cx8800: " >> saida.txt 2>>saida.txt
rmmod -fv cx8800 >> saida.txt 2>>saida.txt
echo "removendo cx88xx: " >> saida.txt 2>>saida.txt
rmmod -fv cx88xx >> saida.txt 2>>saida.txt
echo "removendo tuner: " >> saida.txt 2>>saida.txt
rmmod tuner >> saida.txt 2>>saida.txt
echo "Testando o card ${j} com o tuner ${i}" >> saida.txt 2>>saida.txt
modprobe cx88xx card=$j tuner=$i >> saida.txt 2>>saida.txt
modprobe cx88_alsa >> saida.txt 2>>saida.txt
modprobe cx8800 >> saida.txt 2>>saida.txt
echo "us-bcast Composite1: " >> saida.txt 2>>saida.txt
scantv -n "NTSC-M" -f us-bcast -c /dev/video0 -C /dev/vbi0 -i "Composite1" >> saida.txt 2>>saida.txt
echo "us-bcast Composite3: " >> saida.txt 2>>saida.txt
scantv -n "NTSC-M" -f us-bcast -c /dev/video0 -C /dev/vbi0 -i "Composite3" >> saida.txt 2>>saida.txt
done
done
Alguém pode me ajudar?