TechnoTrend Premium not recognised (1 Viewer)

strawberry

Portal Member
January 5, 2006
41
0
Hi Spraw,


I am very enthousiastic to see you continue all the good work Drak has done , I know it's al lot of work but am not skilled enough to help, only in testing


I've had some progress and I've got picture and some stuttering sound. Although I can't switch channel because then everything goes black :)

But shouldn't be that hard to fix the channel switch I guess.

I'll try to figure out some way for you guys to try it out to see if it "works" for you too. But i've changed both the TTPremiumSource and some parts of mediaportal to get it to work. I'll see what I can do.

/sprawl
 

jackkill

Portal Member
March 11, 2007
6
0
Home Country
hi I hope we reach our dream soon :D

here is the siemens SDK for the cards technotrend premium skystar1 hauppauge nexus-s (same card hardware)

the technotrend premium card (skystar1) was used by three manufacturer as a basis of one of their own product.
hauppauge for nexus-s
technotrend for skystar 1
Siemens for Fujitsu Siemens pci dvb sat card

hauppauge uses twicked technotrend drivers, while Siemens developed their own.

here is the last(discontinued) Siemens driver:
http://support.fujitsu-siemens.com/...wareGUID=1B19BAD0-C4D3-48A8-8F76-EF40C1F76115

and their last sdk:
http://support.fujitsu-siemens.com/...wareGUID=55746248-6803-4F84-840D-1EF0B3C7228E

I really hope that this sdk will help you all :D
:D
 

dman_lfc

Retired Team Member
  • Premium Supporter
  • July 28, 2004
    1,772
    30
    UK
    Home Country
    New Zealand New Zealand
    We already have the SDK thats not the issue. The issue is a spare card with a willing developer.
    This has been going on for years...

    DMAN
     

    boobee

    Retired Team Member
  • Premium Supporter
  • May 10, 2006
    60
    0
    Home Country
    Italy Italy
    dman_LFC, what about sponsoring this bounty? could the devs team accept it?

    as i wrote in the channel a couple of weeks ago, i'm again offering to ship my SS1 for free to the kind willing soul who'll put some effort into finishing TTpremium support. i still believe most of the work has been done, support is into svn since ages, should just be a matter of cosmetics...

    if we also could put a bounty on this, donating to the team, couldn't we hopefully speed up the whole thing? is it worth to start a poll about people interested in donating?

    anyone from the team interested, i'm in.

    10x
     

    peep

    Portal Pro
    March 1, 2006
    63
    1
    Finland
    Home Country
    Finland Finland
    If I'm not mistaken, we already tried to poll for a donation quite some time ago, I even remember someone offering to send a TTPremium card (correct me if I'm wrong). I think the problem lies more in finding a willing programmer for the task.

    Count me in on the donation in case we find someone willing to take on the task..
     

    strawberry

    Portal Member
    January 5, 2006
    41
    0
    Support and donations for the card

    ehmmm, I think Frodo already has the funds for a TT Premium, correct me if I am wrong but that is what I understand from this:

    https://forum.team-mediaportal.com/donation_technotrend_premium_nexus_ss1_support-t1324p6.html

    thread

    So I guess the only thing holding back support for the card is a developer

    No intention to flame but that's the history as fair as I can see...

    I sincerely hope Sprawl comes up with a good solution for this card, preferrably in TV Server with simultaneous multiple encrypted channel support :D

    Strawberry



    Quote from Agree to Lugiber regarding the subject:

    lugiber:

    btw, i think u should check out with frodo on irc to be sure he bought the card ,cam,etc from your donations i'm sorry, but i dont know what is done about it...

    Greets
    Agree
     

    kikko77

    Portal Member
    January 4, 2007
    16
    0
    Home Country
    Italy Italy
    I have created a patch for mp 0.2.2.0, so now my Hauppauge Nexus 2.1 card work well into configuration program.
    From Mediaportal program i receve an error when i start it, the error is:
    "Failed to initialize COM component"
    And when i start a tv section the MP don't start the mpg2 decoder...


    The bin files is upload here:
    http://www.hostfiles.org/download.php?id=47DD0084


    This is the patch:
    Index: Configuration/EditCaptureCardForm.cs
    ===================================================================
    --- Configuration/EditCaptureCardForm.cs (revision 13903)
    +++ Configuration/EditCaptureCardForm.cs (working copy)
    @@ -309,7 +309,9 @@
    }

    //treat the TTPremium DVB-S card as a general H/W card
    - if (((string)(availableVideoDevices)) == "TechnoTrend SAA7146 Capture (WDM)")
    + if ((((string)(availableVideoDevices)) == "TechnoTrend SAA7146 Capture (WDM)") ||
    + (((string)(availableVideoDevices)) == "TTPremiumSource"))
    +
    {
    if (ttPremiumAdded) continue;
    if (addNewCard || (!addNewCard && deviceToEdit.VideoDevice == "TechnoTrend SAA7146 Capture (WDM)"))
    Index: Configuration/Sections/TVCaptureCards.cs
    ===================================================================
    --- Configuration/Sections/TVCaptureCards.cs (revision 13903)
    +++ Configuration/Sections/TVCaptureCards.cs (working copy)
    @@ -476,7 +476,8 @@
    continue;
    }
    //treat the TTPremium card as a general H/W card
    - if (((string)(availableVideoDevices)) == "TechnoTrend SAA7146 Capture (WDM)")
    + if ((((string)(availableVideoDevices)) == "TechnoTrend SAA7146 Capture (WDM)") ||
    + (((string)(availableVideoDevices)) == "TTPremiumSource"))
    {
    TVCaptureDevice cd = new TVCaptureDevice();
    cd.VideoDeviceMoniker = availableVideoDeviceMonikers.ToString();
    Index: Core/DShowNET/Helper/Filters/FilterHelper.cs
    ===================================================================
    --- Core/DShowNET/Helper/Filters/FilterHelper.cs (revision 13903)
    +++ Core/DShowNET/Helper/Filters/FilterHelper.cs (working copy)
    @@ -89,6 +89,7 @@
    {
    devices.Add(device.MonikerString);
    }
    +
    //b2c2
    foreach (Filter device in Filters.LegacyFilters)
    {
    @@ -96,6 +97,13 @@
    devices.Add(device.MonikerString);
    }

    + //TTPremiumSource
    + foreach (Filter device in Filters.LegacyFilters)
    + {
    + if (device.Name == "TTPremiumSource")
    + devices.Add(device.MonikerString);
    + }
    +
    foreach (Filter device in Filters.BDAReceivers)
    {
    if (device.Name.ToLower() =="bda slip de-framer") continue;
    @@ -122,6 +130,12 @@
    if(device.Name=="B2C2 MPEG-2 Source")
    devices.Add(device.Name);
    }
    + //TTPremiumSource
    + foreach (Filter device in Filters.LegacyFilters)
    + {
    + if (device.Name == "TTPremiumSource")
    + devices.Add(device.Name);
    + }

    foreach (Filter device in Filters.BDAReceivers)
    {
     

    Users who are viewing this thread

    Top Bottom