home
products
contribute
download
documentation
forum
Home
Forums
New posts
Search forums
What's new
New posts
All posts
Latest activity
Members
Registered members
Current visitors
Donate
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Search titles only
By:
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
MediaPortal 1
MediaPortal 1 Talk
VCTs for providers who are not FTA
Contact us
RSS
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="Benoire" data-source="post: 1012101" data-attributes="member: 121281"><p><span style="font-size: 12px"><span style="font-family: 'arial'">Hi MM,</span></span></p><p> </p><p><span style="font-size: 12px"><span style="font-family: 'arial'">So I need a little help with this, sorry to bother you.</span></span></p><p> </p><p><span style="font-size: 12px"><span style="font-family: 'arial'">I'm using DJBlu's amazing plugin as he has now added Sky NZ to his list for EPG grabbing, I believe he is trying to use the dump I gave him to get the rest of the data so it can do all the channel shifting/grouping like the UK version does (really, this is the perfect example of how TVEngine software could work... Plugins per data type, saves having to edit a whole load of code everytime the engine changes!).</span></span></p><p> </p><p><span style="font-size: 12px"><span style="font-family: 'arial'">In the meantime I'm trying to add the code for the LCNs in to his modified TVE3. I've taken what you said above and gone in to the TSWriter source, edited both NITDecoder to add the references to the Sky LCN. Example below:</span></span></p><p> </p><p><em><span style="font-size: 15px"><span style="font-family: 'Calibri'">if(indicator==0x83 || indicator==0xe2) // lcn</span></span></em></p><p><em><span style="font-size: 15px"><span style="font-family: 'Calibri'">{</span></span></em></p><p><em><span style="font-size: 15px"><span style="font-family: 'Calibri'">try</span></span></em></p><p><em><span style="font-size: 15px"><span style="font-family: 'Calibri'">{</span></span></em></p><p><em><span style="font-size: 15px"><span style="font-family: 'Calibri'">DVB_GetLogicalChannelNumber(original_network_id,transport_stream_id,&buf[pointer]);</span></span></em></p><p><em><span style="font-size: 15px"><span style="font-family: 'Calibri'">}</span></span></em></p><p><em><span style="font-size: 15px"><span style="font-family: 'Calibri'">catch(...)</span></span></em></p><p><em><span style="font-size: 15px"><span style="font-family: 'Calibri'">{</span></span></em></p><p><em><span style="font-size: 15px"><span style="font-family: 'Calibri'">LogDebug("exception in DVB_GetLogicalChannelNumber");</span></span></em></p><p><em><span style="font-size: 15px"><span style="font-family: 'Calibri'">}</span></span></em></p><p><span style="font-size: 15px"><span style="font-family: 'Calibri'"><em>}</em></span></span></p><p><span style="font-size: 15px"><span style="font-family: 'Times New Roman'"> </span></span></p><p style="text-align: left"><span style="font-size: 12px"><span style="font-family: 'arial'">I'm assuming that what I've effectively said here is that the LCN information that I'm after is either on 0x83 <strong><u>OR</u></strong> 0xe2 ( as you said that it was following standard DVB practices) and that it should try Code DVB_GETLCN to gather the correct data. Would the code surrounding DVB_GetLogicalChannelNumber be applicable for finding the sky values, or do I need to amend them?</span></span></p> <p style="text-align: left"></p> <p style="text-align: left"><span style="font-size: 12px"><span style="font-family: 'arial'">Any help or pointers is greatly appreciated.</span></span></p> <p style="text-align: left"></p> <p style="text-align: left"><span style="font-size: 12px"><span style="font-family: 'arial'">Chris</span></span></p></blockquote><p></p>
[QUOTE="Benoire, post: 1012101, member: 121281"] [SIZE=3][FONT=arial]Hi MM,[/FONT][/SIZE] [SIZE=3][FONT=arial]So I need a little help with this, sorry to bother you.[/FONT][/SIZE] [SIZE=3][FONT=arial] [/FONT][/SIZE] [SIZE=3][FONT=arial]I'm using DJBlu's amazing plugin as he has now added Sky NZ to his list for EPG grabbing, I believe he is trying to use the dump I gave him to get the rest of the data so it can do all the channel shifting/grouping like the UK version does (really, this is the perfect example of how TVEngine software could work... Plugins per data type, saves having to edit a whole load of code everytime the engine changes!).[/FONT][/SIZE] [SIZE=3][FONT=arial] [/FONT][/SIZE] [SIZE=3][FONT=arial]In the meantime I'm trying to add the code for the LCNs in to his modified TVE3. I've taken what you said above and gone in to the TSWriter source, edited both NITDecoder to add the references to the Sky LCN. Example below:[/FONT][/SIZE] [I][SIZE=4][FONT=Calibri]if(indicator==0x83 || indicator==0xe2) // lcn[/FONT][/SIZE][/I] [I][SIZE=4][FONT=Calibri]{[/FONT][/SIZE][/I] [I][SIZE=4][FONT=Calibri]try[/FONT][/SIZE][/I] [I][SIZE=4][FONT=Calibri]{[/FONT][/SIZE][/I] [I][SIZE=4][FONT=Calibri]DVB_GetLogicalChannelNumber(original_network_id,transport_stream_id,&buf[pointer]);[/FONT][/SIZE][/I] [I][SIZE=4][FONT=Calibri]}[/FONT][/SIZE][/I] [I][SIZE=4][FONT=Calibri]catch(...)[/FONT][/SIZE][/I] [I][SIZE=4][FONT=Calibri]{[/FONT][/SIZE][/I] [I][SIZE=4][FONT=Calibri]LogDebug("exception in DVB_GetLogicalChannelNumber");[/FONT][/SIZE][/I] [I][SIZE=4][FONT=Calibri]}[/FONT][/SIZE][/I] [SIZE=4][FONT=Calibri][I]}[/I][/FONT][/SIZE] [SIZE=4][FONT=Times New Roman] [/FONT][/SIZE] [LEFT][SIZE=3][FONT=arial]I'm assuming that what I've effectively said here is that the LCN information that I'm after is either on 0x83 [B][U]OR[/U][/B] 0xe2 ( as you said that it was following standard DVB practices) and that it should try Code DVB_GETLCN to gather the correct data. Would the code surrounding DVB_GetLogicalChannelNumber be applicable for finding the sky values, or do I need to amend them?[/FONT][/SIZE][/LEFT] [LEFT] [/LEFT] [LEFT][SIZE=3][FONT=arial]Any help or pointers is greatly appreciated.[/FONT][/SIZE][/LEFT] [LEFT] [/LEFT] [LEFT][SIZE=3][FONT=arial]Chris[/FONT][/SIZE][/LEFT] [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
MediaPortal 1
MediaPortal 1 Talk
VCTs for providers who are not FTA
Contact us
RSS
Top
Bottom