pinnacle 3010i or 3010iX supported? (1 Viewer)

McSeven

Portal Pro
February 24, 2007
67
0
Home Country
Germany Germany
MediaPortal Version: 0.2.2

Hi,

since I didn't find much on this card: Is is possible to somehow with some drivers activate this card's analogue tuners? My dvbt signal does not contain radio and way less channels than my analogue cable connection. So I'd prefer to use the cable over the wireless, unfortunately, MP only reconizes the DVB-T tuner (after I added them to the cardsconfigxml file manually).

Additionally, I don't seem to find any analogue stuff under the BDA-Section in graphedit, maybe someone with this card installed can help (analogue works fine in MCE2005)?

Thanks, Seven
 

McSeven

Portal Pro
February 24, 2007
67
0
Home Country
Germany Germany
tried a bit, now it works...

hi lele_co, and anybody else, who owns this card. Pinnacle evidently sold it under several names "PCTV Dual Hybrid Pro PCI", "PCTV 310i", "PCTV 3010i", "PCTV 310iX", "PCTV 3010iX" and so on...

Solution as follows.
1. get graphedit. You _will_ need it.
2. goto cardconfig.xml and copy the 310i (search for it!)
analogue and digital (dvbt) part
3. paste it on the bottom (before closing </tvcards> of course)
4. now launch graphedit
5. analogue part (was structurally ok, but):
look in pasted part and verify with graphedit the names
in the <filters> section (PCTV BDA Tuner and so on). The
casing matters. so be sure to write XBar as XBar and not
XBAR. skip %% entries.

Install an mpeg2 encoder (i.e. WinDVR 3.0 ->google!)

then configure MP and you'll have an new section 3rd away from
bottom: Encoders. open this section and configure the indeo
encoder according to your TV standard. Exit. Again configure.

go ahead. TV-Cards should now be found. I must say quality
is quite poor on both tuners. Unfortunately, I don't have an
external amplifier for the signal and LCD TV-Picture was clear.
Gonna use dvbt again.

6. digital part. all is ok, but have a look at the revision number
at the end of the moniker. it was rev_00 in my case, but
graphedit (insert filters->BDA driver->PCTV DVBT...) revealed
rev_01; and suddenly my card could be found; I had to ex-
change "310i" with "3010iX" also in the string of the card.
but the may depend on your card. Have a look in graphedit,
there you'll find the correct name in one of the BDA sections.

Hope that helps. I can post my config as well tomorrow...

Seven
 

lele_co

New Member
March 6, 2007
3
0
Home Country
Italy Italy
Thank U so much

Digital parts works very good.

Analog part don't work ... it said "unable to create graph for this device"

Can post me your configuration?

Many Tx
lele
 

McSeven

Portal Pro
February 24, 2007
67
0
Home Country
Germany Germany
Code that works for me...

Hi again,

this code works for me.
And don't forget to install an MPEG2 Encoder!

bye,
Seven

Code:
  <capturecard commercialname="Pinnacle PCTV 3010i (DVBT)" 
   capturename="Pinnacle PCTV 3010iX BDA Digital Capture DVBT" 
   devid="ven_1131&amp;dev_7162&amp;subsys_010011bd&amp;rev_01">
    <capabilities tv="true" radio="false" mpeg2="true" mce="false" sw="false" bda="true"/>
    <tv>
      <interface cat="capture" video="2" audio="3" mpeg2="1" sectionsandtables="5"/>
      <filters>
        <filter cat="networkprovider"	name="Microsoft DVBT Network Provider"          checkdevice="false"/>
        <filter cat="tunerdevice"     name="Pinnacle PCTV 3010iX BDA DVBT Tuner"      checkdevice="true"/>
        <filter cat="capture"         name="Pinnacle PCTV 3010iX BDA Digital Capture DVBT" checkdevice="true"/>
      </filters> 
      <connections>
        <connection sourcefilter="networkprovider" sourcepin="0" sinkfilter="tunerdevice"	sinkpin="0"/>
        <connection sourcefilter="tunerdevice"     sourcepin="0" sinkfilter="capture"     sinkpin="0"/>
      </connections>
    </tv>
  </capturecard>


  <capturecard commercialname="Pinnacle PCTV 3010iX (Analogue)"
    capturename="Pinnacle PCTV 3010iX BDA Analog Capture" 
   devid="ven_1131&amp;dev_7162&amp;subsys_010011bd&amp;rev_01">
    <capabilities tv="true" radio="true" mpeg2="true" mce="false" sw="false" bda="false" /> 
    <tv>
      <interface cat="mux" video="" audio="" mpeg2="0" /> 
      <filters>
        <filter cat="tvtuner" name="Pinnacle PCTV 3010iX BDA Analog TV Tuner" checkdevice="true" /> 
        <filter cat="tvaudio" name="Pinnacle PCTV 3010iX BDA Analog TV Audio" checkdevice="true" /> 
        <filter cat="crossbar" name="Pinnacle PCTV 3010iX BDA Analog Xbar" checkdevice="true" /> 
        <filter cat="capture" name="Pinnacle PCTV 3010iX BDA Analog Capture" checkdevice="true" /> 
        <filter cat="videncoder" name="%videoencoder%" checkdevice="false" />
        <filter cat="audencoder" name="%audioencoder%" checkdevice="false" /> 
        <filter cat="mux" name="%mpegmux%" checkdevice="false" /> 
      </filters>
      <connections>
        <connection sourcefilter="tvtuner" sourcepin="0" sinkfilter="crossbar" sinkpin="%tvtuner%" /> 
        <connection sourcefilter="tvtuner" sourcepin="1" sinkfilter="tvaudio" sinkpin="0" /> 
        <connection sourcefilter="tvaudio" sourcepin="0" sinkfilter="crossbar" sinkpin="%audiotuner%" /> 
        <connection sourcefilter="crossbar" sourcepin="0" sinkfilter="capture" sinkpin="0" /> 
        <connection sourcefilter="crossbar" sourcepin="1" sinkfilter="capture" sinkpin="1" /> 
        <connection sourcefilter="capture" sourcepin="0" sinkfilter="videncoder" sinkpin="0" /> 
        <connection sourcefilter="capture" sourcepin="2" sinkfilter="audencoder" sinkpin="0" /> 
        <connection sourcefilter="videncoder" sourcepin="0" sinkfilter="mux" sinkpin="0" /> 
        <connection sourcefilter="audencoder" sourcepin="0" sinkfilter="mux" sinkpin="1" /> 
      </connections>
    </tv>
  </capturecard>
 

Users who are viewing this thread

Top Bottom