NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public NextPVR Support Legacy (v4.x and earlier) v
« Previous 1 … 127 128 129 130 131 … 433 Next »
sat->ip NextPVR only recognizes one tune

sat->ip NextPVR only recognizes one tune
klayer
Offline

Junior Member

Posts: 6
Threads: 1
Joined: May 2016
#1
2016-05-01, 11:36 AM
I have a Grundig GSS Sat->Ip tuner which is immediately recognized by NextPVR.
I can record and watch TV. Unfortunately only one tuner can used allthough the Grundig GSS has 4 tuners.

Is this a principal limitation?
Any workaround known?
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,723
Threads: 767
Joined: Nov 2003
#2
2016-05-01, 05:27 PM
I don't have any experience with this Grundig Sat>IP server. You can certainly use multiple tuners on other Sat>IP devices though.

Does the device appear multiple times on the Settings->Devices screen? It should, once for each tuner, and they should all be set up.
KayDiefenthal
Offline

Member

Posts: 59
Threads: 2
Joined: Nov 2013
#3
2016-05-01, 06:52 PM
Telestar Digibit R1
Grundig Gss 400
Inverto IDL 400

are all the same device
klayer
Offline

Junior Member

Posts: 6
Threads: 1
Joined: May 2016
#4
2016-05-05, 03:34 AM
sub Wrote:I don't have any experience with this Grundig Sat>IP server. You can certainly use multiple tuners on other Sat>IP devices though.

Does the device appear multiple times on the Settings->Devices screen? It should, once for each tuner, and they should all be set up.

No I does not. Only one tuner shows up.
KayDiefenthal
Offline

Member

Posts: 59
Threads: 2
Joined: Nov 2013
#5
2016-05-05, 07:44 AM (This post was last modified: 2016-05-05, 08:36 AM by KayDiefenthal.)
thats right Klayer NPvr create only one instance for each satip device

the reason can be that the capabilities field from the device description are not readed
or isnt avaible if not avaible then should only one instance created

@Sub

here an Example of read the capabilities Field from the device Description
Code:
var capabilitiesElement = deviceElement.Element(n1 + "X_SATIPCAP");
                        if (capabilitiesElement != null)
                        {
                            _capabilities = capabilitiesElement.Value;
                            if (capabilitiesElement.Value.Contains(','))
                            {
                                string[] capabilities = capabilitiesElement.Value.Split(',');
                                foreach (var capability in capabilities)
                                {
                                    ReadCapability(capability);
                                }
                            }
                            else
                            {
                                ReadCapability(capabilitiesElement.Value);
                            }
                        }
                        else
                        {
                           _supportsDVBS = true;
                           //ToDo Create only one Digital Recorder / Capture Instance here
                        }
Code:
private void ReadCapability(string capability)
        {
            
                string[] cap = capability.Split('-');
                switch (cap[0].ToLower())
                {
                    case "dvbs":
                    case "dvbs2":
                        {
                           // Optional that you know what an device Supports can you add an flag
                            _supportsDVBS = true;
                            
                            for(int i =0;i<int.Parse(cap[1]);i++)
                            {
                                //ToDo Create Digital Recorder / Capture Instance here
                            }
                            
                            break;
                        }
                    case "dvbc":
                    case "dvbc2":
                        {
                            // Optional that you know what an device Supports can you add an flag
                            _supportsDVBC = true;
                          
                            for (int i = 0; i < int.Parse(cap[1]); i++)
                            {
                               //ToDo Create Digital Recorder / Capture Instance here
                            }
                            
                            break;
                        }
                    case "dvbt":
                    case "dvbt2":
                        {
                           // Optional that you know what an device Supports can you add an flag
                            _supportsDVBT = true;
                            
                            
                            for (int i = 0; i < int.Parse(cap[1]); i++)
                            {
                                //ToDo Create Digital Recorder / Capture Instance here

                            }
                            
                            break;
                        }
                }
            
        }
klayer
Offline

Junior Member

Posts: 6
Threads: 1
Joined: May 2016
#6
2016-05-08, 02:15 AM
@Kay
Ok. I am seeing some code.

Can I do anything to resolve the problem?
KayDiefenthal
Offline

Member

Posts: 59
Threads: 2
Joined: Nov 2013
#7
2016-05-08, 04:55 AM (This post was last modified: 2016-05-08, 07:36 AM by sub.)
dont know how good you understand code and how good you in decompile an patching software are
the code is for @Sub as reference to fix the Problem ,he had it seen
klayer
Offline

Junior Member

Posts: 6
Threads: 1
Joined: May 2016
#8
2016-05-08, 05:29 PM
I have no idea about the code and a patch software.
This is too complicated.
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,723
Threads: 767
Joined: Nov 2003
#9
2016-05-08, 06:10 PM
I'm looking into, and have more of an idea of what is happening. With any luck there will be a fix in the next release.
klayer
Offline

Junior Member

Posts: 6
Threads: 1
Joined: May 2016
#10
2016-05-10, 03:33 AM
Great and thanks!
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (2): 1 2 Next »


Possibly Related Threads…
Thread Author Replies Views Last Post
  NextPVR - EPG Setup - XML/XMLTV EPG - Zap2it & Zap2xml Erdrick 126 141,464 2024-01-29, 01:07 AM
Last Post: stoenjes44
  NextPVR VOD through Kodi unmich 2 1,257 2023-06-18, 03:54 AM
Last Post: sub
  Can NextPVR switch graphics mode to best match content ? madbrain 2 2,166 2021-09-25, 02:25 AM
Last Post: madbrain
  NextPVR and Remote viewing MaxiBelas 2 1,682 2021-09-07, 05:29 PM
Last Post: sub
  Help with NextPVR evinahmad86 1 1,431 2021-07-23, 07:01 PM
Last Post: sub
  Epg setting SD token NextPvr 4.2.4 casimir@zyxu.ca 1 1,571 2021-03-05, 01:38 PM
Last Post: mvallevand
  NextPVR hangs when tuning to offline channel? CormacBaptiste 2 1,939 2021-02-03, 01:29 PM
Last Post: Graham
  NextPVR V4 Web Issue meccano 3 1,894 2021-01-30, 04:20 AM
Last Post: meccano
  TV very choppy after downgrade from Nextpvr v5 riverboat2001 18 4,807 2021-01-26, 01:51 PM
Last Post: mvallevand
  Configure NextPVR Server Pliedes 1 1,825 2020-10-07, 04:59 PM
Last Post: sub

  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

© Designed by D&D, modified by NextPVR - Powered by MyBB

Linear Mode
Threaded Mode