我有 Pinnacle PCTV HD PCI 卡。我能够使用 Kaffeine 用这张卡观看和收听 ATSC/QAM 频道。
我也能观看所有模拟频道。问题是 tvtime 没有声音。
这是我的卡信息:
05:05.0 Multimedia video controller: Conexant Systems, Inc. CX23880/1/2/3 PCI Video and Audio Decoder (rev 05)
Subsystem: Pinnacle Systems Inc. Device 0051
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV+ VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
Latency: 64 (5000ns min, 13750ns max), Cache Line Size: 64 bytes
Interrupt: pin A routed to IRQ 20
Region 0: Memory at f9000000 (32-bit, non-prefetchable) [size=16M]
Capabilities: <access denied>
Kernel driver in use: cx8800
Kernel modules: cx8800
05:05.1 Multimedia controller: Conexant Systems, Inc. CX23880/1/2/3 PCI Video and Audio Decoder [Audio Port] (rev 05)
Subsystem: Pinnacle Systems Inc. Device 0051
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV+ VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
Latency: 64 (1000ns min, 63750ns max), Cache Line Size: 64 bytes
Interrupt: pin A routed to IRQ 20
Region 0: Memory at fa000000 (32-bit, non-prefetchable) [size=16M]
Capabilities: <access denied>
Kernel driver in use: cx88_audio
Kernel modules: cx88-alsa
05:05.2 Multimedia controller: Conexant Systems, Inc. CX23880/1/2/3 PCI Video and Audio Decoder [MPEG Port] (rev 05)
Subsystem: Pinnacle Systems Inc. Device 0051
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV+ VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
Latency: 64 (1500ns min, 22000ns max), Cache Line Size: 64 bytes
Interrupt: pin A routed to IRQ 20
Region 0: Memory at fb000000 (32-bit, non-prefetchable) [size=16M]
Capabilities: <access denied>
Kernel driver in use: cx88-mpeg driver manager
Kernel modules: cx8802
如果我这样做:
“arecord-D hw:1,0-f dat|aplay”
我有声音,但 tvtime 中的音量控制不起作用。不过,我可以使用 pulseaudio 中的 alsa-plugin 设备调整音量。
我希望 tvtime 能够正常运行。
谢谢
答案1
它似乎tvtime
没有与时俱进,不使用 ALSA 或 PulseAudio,而是尝试使用 OSS,但 OSS 可能已被禁用。您可以尝试让 PulseAudio 通过在以下情况下运行此应用程序来重定向 OSS 请求padsp
:
sudo apt-get install pulseaudio-utils
padsp tvtime
如果这不起作用,请尝试sox
这里提到的建议:http://ubuntu-ky.ubuntuforums.org/showthread.php?p=6350938
答案2
您是否尝试安装gnome-alsamixer
并调整电视时间声音?
答案3
我不知道这是否太晚了,但如果有用的话:
我建议您在终端中尝试一下此命令,这样可能会从正确的设备 (/dev/video?) 收集一些音频并将其路由到声音输出。此外,您可能需要将 /dev/video? 更改为正确的设备。
tvtime option --device /dev/video1 | arecord -D hw:1,0 -r 32000 -c 2 -f S16_LE | aplay -
不知何故,将 tvtime 重定向到正确的设备(/dev/video?)将导致音频也以正确的方式重定向。
为了知道可以使用哪些设备,您可能希望使用此命令:
ls -l /dev/video*
这将产生如下列表:
geppettvs@DYLAN:~$ ls -l /dev/video*
crw-rw----+ 1 root video 81, 0 2012-04-21 09:58 /dev/video0
crw-rw----+ 1 root video 81, 1 2012-04-21 09:59 /dev/video1
geppettvs@DYLAN:~$
这样你就会知道哪些设备可供 tvtime(或其他软件)使用。
我希望这对你或其他人有帮助。
祝你好运!