TerraTec Cinergy HT PCI: Difference between revisions

From LinuxTVWiki
Jump to navigation Jump to search
mNo edit summary
(merged the content from the "TerraTec Cinergy HT PCI-V4L" article; for the relevant user contribution history see the archived "V4L:TerraTec Cinergy HT PCI-V4L" page)
Line 1: Line 1:
A hybrid [[DVB-T]] [[DVB-T PCI Devices||PCI device]] from [[TerraTec].
The [[DVB-T]] functionality in '''[[TerraTec]] Cinergy HT PCI''' should probably work.[http://linuxtv.org/v4lwiki/index.php?title=Terratec_Cinergy_HT_PCI&diff=7505&oldid=6723] (The analog side should also work.[http://linuxtv.org/v4lwiki/index.php?title=Terratec_Cinergy_HT_PCI&oldid=7505])


It should be supported.
== See also ==

http://linuxtv.org/v4lwiki/index.php/Terratec_Cinergy_HT_PCI
==Overview/Features==
* PCI interface
* Hybrid card, supporting both analog and DVB-T.

===Components Used===
* Philips SAA7133 chipset for analog (actually the chip is marked as SAA7131E, but seems compatible).
* Analog tuner: tda8290+75
* Philips TDA10046H chipset for digital.
* TV in, Composite video in, S-Video in, audio in
* Radio (untested)
* Remote control (untested)

===Identification===
00:09.0 0480: 1131:7133 (rev d1)
Subsystem: 153b:1175
Flags: bus master, medium devsel, latency 32, IRQ 11
Memory at fa020000 (32-bit, non-prefetchable) [size=2K]
Capabilities: [40] Power Management version 2

* '''Attention:''' There have been reports of a new version of the card based on Conexant CX 23880 chipset, which is not yet supported! So beware.

==How to make it work==

===Kernel===
* Tested under vanilla 2.6.19.1, but should work with earlier kernels, too.

===Module parameters===

If you use the latest v4l drivers, no module option is needed.

options saa7134 card=108 tuner=54

* For Ubuntu 6.10 use card=83
* Also seems to work with card=94
* Also 55, 81 and 88 work, but will make firmware upload for DVB fail.
* For DVB-T you will need the '' saa7134-dvb'' module as well.
* DVB-T also works. Tested with drivers v4l-dvb-experimental (hg-tree) from www.mcentral.de

===Sound===

This card has no sound output jack, therefor analog sound is a little bit complicated to get working. It has to be captured from the dma sound device and routed to your normal sound card in user space.

To get access to the dma sound device, you must load the ''saa7134-alsa'' or the ''saa7134-oss'' module, too.


* Mythtv - AFAIK the only way to get decent sound in Mythtv is to set the Codec as:

'''Uncompressed''' in Setup -> Setup -> TV Settings -> Recording Profiles -> Software Encoders (v4l based) -> Live TV.

===Viewers===

Note: This describes a system with 2 sound cards, with just 1 sound card you might have to change /dev/dsp2 to /dev/dsp1. "/dev/dsp2" here is your saa7134-oss or saa7134-alsa with oss-emulation audio device.

* mplayer (analog)
mplayer tv:// -tv driver=v4l2:device=/dev/video0:fps=29.97:chanlist=us-cable:audiorate=32000:adevice=/dev/dsp2:input=0:amode=1:normid=4

* tvtime(analog, short script required)
#!/bin/sh
(sleep 5; amixer -q -c 0 sset PCM 80%,80% unmute; exec sox -q -c 2 -s -w -r 32000 -t ossdsp /dev/dsp2 -t ossdsp -w -r 32000 /dev/dsp) &
tvtime --mixer=/dev/mixer:pcm
kill `ps | awk '/sox/ && !/awk/ {print $1}'`
amixer -q -c 0 sset PCM 80%,80% unmute

* For DVB: Kaffeine with xine works perfect. Scanning for channels in kaffeine also works out of the box.

===Teletext===

* alevt
Works out of the box (analog).

==External Links==
*

Revision as of 16:30, 8 November 2008

A hybrid DVB-T |PCI device from [[TerraTec].

It should be supported.

Overview/Features

  • PCI interface
  • Hybrid card, supporting both analog and DVB-T.

Components Used

  • Philips SAA7133 chipset for analog (actually the chip is marked as SAA7131E, but seems compatible).
  • Analog tuner: tda8290+75
  • Philips TDA10046H chipset for digital.
  • TV in, Composite video in, S-Video in, audio in
  • Radio (untested)
  • Remote control (untested)

Identification

00:09.0 0480: 1131:7133 (rev d1)
       Subsystem: 153b:1175
       Flags: bus master, medium devsel, latency 32, IRQ 11
       Memory at fa020000 (32-bit, non-prefetchable) [size=2K]
       Capabilities: [40] Power Management version 2
  • Attention: There have been reports of a new version of the card based on Conexant CX 23880 chipset, which is not yet supported! So beware.

How to make it work

Kernel

  • Tested under vanilla 2.6.19.1, but should work with earlier kernels, too.

Module parameters

If you use the latest v4l drivers, no module option is needed.

options saa7134 card=108 tuner=54
  • For Ubuntu 6.10 use card=83
  • Also seems to work with card=94
  • Also 55, 81 and 88 work, but will make firmware upload for DVB fail.
  • For DVB-T you will need the saa7134-dvb module as well.
  • DVB-T also works. Tested with drivers v4l-dvb-experimental (hg-tree) from www.mcentral.de

Sound

This card has no sound output jack, therefor analog sound is a little bit complicated to get working. It has to be captured from the dma sound device and routed to your normal sound card in user space.

To get access to the dma sound device, you must load the saa7134-alsa or the saa7134-oss module, too.


  • Mythtv - AFAIK the only way to get decent sound in Mythtv is to set the Codec as:

Uncompressed in Setup -> Setup -> TV Settings -> Recording Profiles -> Software Encoders (v4l based) -> Live TV.

Viewers

Note: This describes a system with 2 sound cards, with just 1 sound card you might have to change /dev/dsp2 to /dev/dsp1. "/dev/dsp2" here is your saa7134-oss or saa7134-alsa with oss-emulation audio device.

  • mplayer (analog)
mplayer tv:// -tv driver=v4l2:device=/dev/video0:fps=29.97:chanlist=us-cable:audiorate=32000:adevice=/dev/dsp2:input=0:amode=1:normid=4
  • tvtime(analog, short script required)
#!/bin/sh
(sleep 5; amixer -q -c 0 sset PCM 80%,80%  unmute; exec sox -q -c 2 -s -w -r 32000 -t ossdsp /dev/dsp2 -t ossdsp -w -r 32000 /dev/dsp) &
tvtime --mixer=/dev/mixer:pcm
kill `ps | awk '/sox/ && !/awk/ {print $1}'`
amixer -q -c 0 sset PCM 80%,80%  unmute
  • For DVB: Kaffeine with xine works perfect. Scanning for channels in kaffeine also works out of the box.

Teletext

  • alevt

Works out of the box (analog).

External Links