Find it hard to do TV Mappings & HDTV Questions (1 Viewer)

MrMel

Portal Pro
November 16, 2007
90
2
First, I have two FireDTV S2's, each with different card to decode separate things, they use the same satellits.
(One canal digital card and one Viasat card)

After the hassle of renaming the cards in the database which I actually had to do to separate them in the drop-downs, I got it working.

Now, in the channel list I have duplicate of many channels, so I must select that SVT1 (provider) Telenor should be decoded by box 1 and so on.

However, in the TV Mapping window I only see channel name, which pretty much makes it very hard.

Is there any easier way around this?
Is there a way to see "encryption method" for a channel there perhaps?

Secondly, FireDTV's own software finds HD Channels (on Thor 0.8) on the same server, but TVEngine does not, known issue or something that can be solved? (ive tried both the S2 checkbox and without..)

- Fredrik
 

MrMel

Portal Pro
November 16, 2007
90
2
Solved, used SQL to update mappings.
and found a new satellit ini file with correct values so it finds the HDTV channels.
 

MrMel

Portal Pro
November 16, 2007
90
2
The SQL I simply wrote a insert statement to ChannelMap that inserted data depending on Provider in the Tuningdetail (all Telenor bound to card x)


here is the thor ini file that I got to work.


; [ downloaded from www.kingofsat.net (c) 2007-11-21 11:52:36 ]
[SATTYPE]
1=3592
2=Thor 2/3, Intelsat 10-02 (1�W)

[DVB]
0=65
1=10987,V,5632,34,DVB-S
2=11006,V,6111,56,DVB-S
3=11094,V,5632,34,DVB-S
4=11164,V,1450,78,DVB-S
5=11172,V,6111,34,DVB-S
6=11181,V,3100,78,DVB-S
7=11188,V,2142,34,DVB-S
8=11216,V,24500,78,DVB-S
9=11229,H,24500,78,DVB-S
10=11247,V,24500,78,DVB-S
11=11261,H,24500,78,DVB-S
12=11278,V,24500,78,DVB-S
13=11293,H,24500,78,DVB-S
14=11309,V,24500,78,DVB-S
15=11325,H,24500,78,DVB-S
16=11341,V,25000,8psk,23,on,0.35,S2
17=11357,H,24500,78,DVB-S
18=11372,V,24500,78,DVB-S
19=11389,H,24500,8psk,78,on,0.35,S2
20=11403,V,24500,78,DVB-S
21=11421,H,25000,8psk,23,on,0.35,S2
22=11434,V,25000,8psk,23,on,0.35,S2
23=11463,V,6111,34,DVB-S
24=11471,V,6111,34,DVB-S
25=11481,V,6111,34,DVB-S
26=11487,V,3100,78,DVB-S
27=11490,V,6111,,DVB-S
28=11497,V,3200,34,DVB-S
29=11502,V,3200,78,DVB-S
30=11508,V,6666,34,DVB-S
31=11517,V,5632,34,DVB-S
32=11525,V,6111,78,DVB-S
33=11535,V,6111,34,DVB-S
34=11548,V,3472,78,DVB-S
35=11553,V,6111,34,DVB-S
36=11727,V,28000,56,DVB-S
37=11747,H,28000,78,DVB-S
38=11823,H,28000,78,DVB-S
39=12054,H,28000,34,DVB-S
40=12149,V,28000,56,DVB-S
41=12169,H,28000,78,DVB-S
42=12226,V,28000,34,DVB-S
43=12246,H,28000,56,DVB-S
44=12303,V,27800,34,DVB-S
45=12322,H,27800,34,DVB-S
46=12341,V,28000,23,DVB-S
47=12361,H,28000,23,DVB-S
48=12380,V,28000,56,DVB-S
49=12399,H,28000,78,DVB-S
50=12419,V,28000,23,DVB-S
51=12438,H,28000,23,DVB-S
52=12456,V,28000,34,DVB-S
53=12476,H,27800,34,DVB-S
54=12520,V,17500,34,DVB-S
55=12527,H,27500,34,DVB-S
56=12563,H,27500,34,DVB-S
57=12563,V,27500,34,DVB-S
58=12607,V,27500,34,DVB-S
59=12608,H,27500,34,DVB-S
60=12643,H,27500,34,DVB-S
61=12643,V,27500,34,DVB-S
62=12686,V,27500,34,DVB-S
63=12687,H,27500,34,DVB-S
64=12723,H,27500,34,DVB-S
65=12735,V,8800,56,DVB-S

; [ downloaded from www.kingofsat.net (c) 2007-11-21 11:52:36 ]
 

Lucky-Eagle

MP Donator
  • Premium Supporter
  • April 15, 2008
    5
    0
    Home Country
    Sweden Sweden
    MrMel,
    I have the same set up as you, but obviously not the same skills when it comes to database tweaking.
    Could you please explain in more dept what you have done to get it working?
    :D
     

    MrMel

    Portal Pro
    November 16, 2007
    90
    2
    This is for SQL Server.

    to see what # your card has,
    SELECT * FROM CARD

    /* Delete the old channel maps. */
    delete from channelmap
    GO

    /* Insert channel map for telenor, OBS!!!, CHANGE "8" to what number your telenor card has!*/
    insert into channelmap(idchannel, idcard) select c1.idchannel, 8 from channel c1, tuningdetail t1 where c1.idchannel = t1.idchannel and t1.provider = 'telenor'
    GO

    /* Insert channel map for all others (for sample Viasat has multiple provider strings), OBS!!!, CHANGE "7" to what number your non telenor card has!*/
    insert into channelmap(idchannel, idcard) select c1.idchannel, 7 from channel c1, tuningdetail t1 where c1.idchannel = t1.idchannel and t1.provider != 'telenor'
    GO
     

    Users who are viewing this thread

    Top Bottom