SageTV Community  

Go Back   SageTV Community > SageTV Development and Customizations > SageTV Github Development
Forum Rules FAQs Community Downloads Today's Posts Search

Notices

SageTV Github Development Discussion related to SageTV Open Source Development. Use this forum for development topics about the Open Source versions of SageTV, hosted on Github.

Reply
 
Thread Tools Search this Thread Display Modes
  #21  
Old 09-13-2015, 11:32 PM
Monedeath Monedeath is offline
Sage Expert
 
Join Date: Sep 2009
Location: Idaho
Posts: 514
Quote:
Originally Posted by sacrament055 View Post
Not sure if this is related but I thought I'd mention it here. I have 5 ATSC tuners and I have Merit set to prefer my higher quality tuners and that has been working as far as I know until I moved to the new sage 9 jar.

Not quite sure if the Merit is not opposite (lower number is preferred) or if it's random but I keep seeing it pick a tuner that has Merit of 0 instead of a tuner that has Merit of 7 when there's nothing else recording.
I think I'very only seen Sage get weird with tuner merit(seemingly ignoring it) when it comes to use of Sage as a live TV viewer, scheduled recordings seem to still adhere to the logic properly. Are you seeing the same thing or is it ignoring merit on scheduled records as well?

(Configured with three tiers in my case, the Hauppauge 2250 has highest merit, followed by the two HD Homeruns before it is supposed to try for the Ceton tuner which has the lowest tuner merit in my setup... but where the local channels overlap, tuning into live TV with no active recordings going, we could just as easily end up on the Ceton or Homerun rather than the 2250. Scheduled records behave mostly as expected when it comes to tuner selection, scheduler randomly becoming convinced no other tuners are available when several are not withstanding.)

Last edited by Monedeath; 09-13-2015 at 11:42 PM.
Reply With Quote
  #22  
Old 09-14-2015, 08:26 AM
sacrament055 sacrament055 is offline
Sage Aficionado
 
Join Date: Jul 2007
Posts: 474
I'll have to go back and check my recordings but I think it's picking the same tuner by default for recording. Oddly I removed one of my preferred tuners and re-added it and now Sage is picking it first. I'm thinking I might try removing my tuners from the sage.properties file and re-add them and reconfigure merit to see if that resolves it.

It hasn't been that big of a deal so far because none of my tuners are terrible but 2 of them are slightly better at tuning in weak signals or multipath issues.
Reply With Quote
  #23  
Old 09-14-2015, 12:44 PM
Narflex's Avatar
Narflex Narflex is offline
Sage
 
Join Date: Feb 2003
Location: Redondo Beach, CA
Posts: 6,349
Quote:
Originally Posted by wnjj View Post
I think I figured out the Actor/Character repeating issue.

There were new fields added to the "Person" table for wiz.bin version 0x4F and above. My 7.1.9 version was using 0x4B and V9 is 0x55.

Code:
    if (ver >= 0x4F)
    {
      Wizard wiz = Wizard.getInstance();
      extID = in.readInt();
      .
      .
      .

The extID field is used to match actors to their roles in SeriesInfo.java:

Code:
  public String getCharacterForActor(Person actor)
  {
    if (actor == null) return "";
    for (int i = 0; i < people.length; i++)
    {
      // Resolve aliases as well so they match
      if (Math.abs(people[i].extID) == Math.abs(actor.extID))
        return characters[i];
    }
    return "";
  }
The issue is when the V7 db upgrades to V9, all of the actors have an extID of 0. So when the match takes place, the first actor in the DB matches the ID of the actor in the show. So what's needed is if the actor extID is 0, fall back to the other string search "guessCharacterForActor" instead:

Code:
  public String getCharacterForActor(Person actor)
  {
    if (actor == null) return "";

    if (actor.extID == 0) return guessCharacterForActor(actor.name);

    for (int i = 0; i < people.length; i++)
    {
      // Resolve aliases as well so they match
      if (Math.abs(people[i].extID) == Math.abs(actor.extID))
        return characters[i];
    }
    return "";
  }

Nice catch. I'm assuming you'll submit a commit to correct this...if you'd rather I just do it, let me know..but I don't want to just steal your credit for fixing the issue without your permission.
__________________
Jeffrey Kardatzke
Google
Founder of SageTV
Reply With Quote
  #24  
Old 09-14-2015, 03:53 PM
wnjj wnjj is online now
Sage Icon
 
Join Date: Jan 2009
Posts: 1,514
Quote:
Originally Posted by Narflex View Post
Nice catch. I'm assuming you'll submit a commit to correct this...if you'd rather I just do it, let me know..but I don't want to just steal your credit for fixing the issue without your permission.
I have no problem with you just fixing it. Mainly because there are a few other person functions in there relying on extID and I didn't look at the impact of those. I also haven't completely gotten my head around the id versus extid concept. I know id is an internally generated number inside Wizard. I assume extID comes from the EPG and is meant to be more universal but couldn't find exactly where that gets populated. When a SeriesInfo gets built, it looks like the people[] array get populated with Wizard id's by looking up names. So should the character lookup function fall back to matching on people[i].id==actor.id rather than using a text match?

Also, what do the negative id's mean? Are negative id's used to look in indexes and positive ones used directly as id's?
Reply With Quote
  #25  
Old 09-14-2015, 05:07 PM
Monedeath Monedeath is offline
Sage Expert
 
Join Date: Sep 2009
Location: Idaho
Posts: 514
I guess we'll have to see if that fully fixes things, once someone compiles a new jar file. But I would point out that the credits issue happens on new recordings made by 9.0.0.3 as well as the older recordings from previous builds of Sage. The screenshot provided by me earlier was a 9.0.0.3 recording. (" Issue is present on new and old recordings alike." In my initial report)

Good work finding where that lives in the code regardless. Although there probably are a few more moles lurking about to get whacked in this round of whack-a-mole.

Last edited by Monedeath; 09-14-2015 at 05:13 PM.
Reply With Quote
  #26  
Old 09-14-2015, 05:14 PM
wnjj wnjj is online now
Sage Icon
 
Join Date: Jan 2009
Posts: 1,514
Quote:
Originally Posted by Monedeath View Post
Good work finding where that lives in the code regardless.
Thanks for that.

I wonder if the stuff that populates extID somehow got removed during the open source port. If that's the case we'd want to switch all extID back to just id.

The way I found this is by looking through the java code a bit after I ran my latest creation. I build a standalone C++ program that can read wiz.bin. Right now it doesn't do anything useful with the data but I can slap debug printf's in to trace things like this. Iteration time is mere seconds using a standalone program. Eventually I'd like to send the data off to pure txt or even SQL for import into a completely relational DB. Then I'd finish out with a wiz.bin writer. This may eventually allow for "fixing" corrupted wiz.bin files by hand.
Reply With Quote
  #27  
Old 09-14-2015, 05:52 PM
Narflex's Avatar
Narflex Narflex is offline
Sage
 
Join Date: Feb 2003
Location: Redondo Beach, CA
Posts: 6,349
ExtID for people is not something that'll get populated in the open source build. That was using extra data we had on Google Fiber that's not available on the SageTV EPG server. It's possible one day that Schedules Direct will have that data...which is why I left that code in there. The value should be zero for extID for all Person objects for everyone except me (I have a special plugin that uses the Google Fiber EPG server...and no, I can't share it)

The negative values for extID that you're seeing were for 'aliases'. This is for when there's multiple names associated with the same person and the primary name had the positive ID; and the negative ones (with the same absolute value for ID) were the alias names. We used this to link them all together in a way that was fast to resolve.

I'll also go ahead and make that code fix now too.
__________________
Jeffrey Kardatzke
Google
Founder of SageTV
Reply With Quote
  #28  
Old 09-14-2015, 06:05 PM
Narflex's Avatar
Narflex Narflex is offline
Sage
 
Join Date: Feb 2003
Location: Redondo Beach, CA
Posts: 6,349
OK, change is in now.
__________________
Jeffrey Kardatzke
Google
Founder of SageTV
Reply With Quote
  #29  
Old 09-14-2015, 06:07 PM
Slugger Slugger is offline
SageTVaholic
 
Join Date: Mar 2007
Location: Kingston, ON
Posts: 4,008
Quote:
Originally Posted by Narflex View Post
ExtID for people is not something that'll get populated in the open source build. That was using extra data we had on Google Fiber that's not available on the SageTV EPG server. It's possible one day that Schedules Direct will have that data...which is why I left that code in there.
Schedules Direct has support for all that extra data. My client doesn't make use of it, but that's only because I had no need for it at the time. The data is available if/when the client is extended to pull it in. (The data is already in the sdjson.epg cache file sitting on your Sage box if you're using the plugin, the client just needs to be updated to access it and do "whatever" needs to be done to put it into wiz.bin. I assume there are Sage apis around that area that I just haven't read up on yet).
__________________
Twitter: @ddb_db
Server: Intel i5-4570 Quad Core, 16GB RAM, 1 x 128GB OS SSD (Win7 Pro x64 SP1), 1 x 2TB media drive
Capture: 2 x Colossus
STB Controller: 1 x USB-UIRT
Software:Java 1.7.0_71; SageTV 7.1.9
Clients: 1 x HD300, 2 x HD200, 1 x SageClient, 1 x PlaceShifter
Plugins: Too many to list now...
Reply With Quote
  #30  
Old 09-14-2015, 06:15 PM
Denali Denali is offline
Sage Advanced User
 
Join Date: Aug 2008
Location: South Florida
Posts: 169
Thanks wnjj and Narflex for solving the Actor anomaly. Time to give version 9 another try when a new sage.jar is built.
__________________
HTPC: Gigabyte GA-Z170XP-SLI, I7-6700, 16GB, Windows 10 Pro x64, Hauppauge HVR-1600, WinTV-dualHD, Colossus 2, Samsung 850 EVO 120GB, Seagate 3TB, WD 3TB, 3TB, 5TB, Java v1.8.0_231, SageTVx64 v9.2.1.826, Samsung UN60EH6003F, Dish ViP222K, ViewHD 1x2 HDMI Splitter.

Last edited by Denali; 09-14-2015 at 07:09 PM.
Reply With Quote
  #31  
Old 09-14-2015, 06:45 PM
wnjj wnjj is online now
Sage Icon
 
Join Date: Jan 2009
Posts: 1,514
Quote:
Originally Posted by Narflex View Post
OK, change is in now.
Do hasActorInCharacterImage and getActorInCharacterImageURL need updated for the same issue or is CharacterImage data not applicable for the OS version either? It looks like they aren't used internally but are exposed in the API.
Reply With Quote
  #32  
Old 09-15-2015, 12:54 PM
Narflex's Avatar
Narflex Narflex is offline
Sage
 
Join Date: Feb 2003
Location: Redondo Beach, CA
Posts: 6,349
Quote:
Originally Posted by wnjj View Post
Do hasActorInCharacterImage and getActorInCharacterImageURL need updated for the same issue or is CharacterImage data not applicable for the OS version either? It looks like they aren't used internally but are exposed in the API.
The current EPG downloaders won't have the information needed to resolve those into URLs. It might be possible to update the SD plugin to do that...but I'm not aware if they have that data or not.
__________________
Jeffrey Kardatzke
Google
Founder of SageTV
Reply With Quote
  #33  
Old 09-15-2015, 02:02 PM
Slugger Slugger is offline
SageTVaholic
 
Join Date: Mar 2007
Location: Kingston, ON
Posts: 4,008
SD has all that data.... the SD plugin for Sage does not use it. The client interface to the data would require enhancements to be able to access that data. I have no plans to do that anytime soon (i.e. definitely not before 2016, my first Sage OSS project is lined up and is going to take some time and that's all I'm going to have time for into 2016), but all the code is on github for anyone wanting to dive in. But I don't think pulling the data into wiz.bin is enough, I assume no STVs make use of this data either so keep that in mind too.
__________________
Twitter: @ddb_db
Server: Intel i5-4570 Quad Core, 16GB RAM, 1 x 128GB OS SSD (Win7 Pro x64 SP1), 1 x 2TB media drive
Capture: 2 x Colossus
STB Controller: 1 x USB-UIRT
Software:Java 1.7.0_71; SageTV 7.1.9
Clients: 1 x HD300, 2 x HD200, 1 x SageClient, 1 x PlaceShifter
Plugins: Too many to list now...
Reply With Quote
  #34  
Old 09-15-2015, 02:05 PM
Opus4's Avatar
Opus4 Opus4 is offline
Administrator
 
Join Date: Sep 2003
Location: NJ
Posts: 19,624
Quote:
Originally Posted by Slugger View Post
SD has all that data.... the SD plugin for Sage does not use it. The client interface to the data would require enhancements to be able to access that data. I have no plans to do that anytime soon (i.e. definitely not before 2016, my first Sage OSS project is lined up and is going to take some time and that's all I'm going to have time for into 2016), but all the code is on github for anyone wanting to dive in. But I don't think pulling the data into wiz.bin is enough, I assume no STVs make use of this data either so keep that in mind too.
Actually, the STV I'm almost ready to update in GitHub has the ability to display images for people. If you aren't getting back to working on the SD EPG data until 2016, then I suppose that means there's a chance I might get to it before you, but I have another feature I would like to add first too.

Andy
__________________
SageTV Open Source v9 is available.
- Read the SageTV FAQ. Older PDF User's Guides mostly still apply: SageTV V7.0 & SageTV Studio v7.1.
- Hauppauge remote help: 1) Basics/Extending it 2) Replace it 3) Use it w/o needing focus
- HD Extenders: A) FAQs B) URC MX-700 remote setup
Note: This is a users' forum; see the Rules. For official tech support fill out a Support Request.
Reply With Quote
  #35  
Old 04-14-2016, 02:48 PM
egeller egeller is offline
Sage Aficionado
 
Join Date: Feb 2006
Location: Drexel Hill, PA
Posts: 334
Quote:
Originally Posted by Denali View Post

2. Some EPG shows fail to show Future Airings.
I am still seeing this for "MLB Baseball". I can see the past, but not future, entries. Is there something I missed or a work-around?
__________________
Server:UnRaid;2x Intel Xeon E5; SuperMicro moboard;Also:BM3000 w/ WMC; 2x Ceton ETH 6; OpenDCT
SageTV Extender:3x HD200 1x HD300 1xFireTV
Sage TV: 9.2 on Java 11, Standard STVi, Comskip Playback, Web Interface, 24 Hour Clock, SRE, Playon
All in lovely Drexel Hill, PA
Reply With Quote
  #36  
Old 04-16-2016, 06:42 PM
robogeek robogeek is offline
Sage Expert
 
Join Date: Apr 2003
Location: Appleton, WI USA
Posts: 568
Quote:
Originally Posted by egeller View Post
I am still seeing this for "MLB Baseball". I can see the past, but not future, entries. Is there something I missed or a work-around?
I see this too with some shows, running SageTV v9. It seems like it may be related to the number airings (or watched airings) a show has had. My wiz.bin is about 10 years old, so it has tracked many airings. When the blank Future Airings list occurs, the Past Airings list is always capped at exactly 1000 items. Seems like there is some sort of limit being imposed under certain circumstances and when Past Airings=1000, Future Airings fail to show. I see it happen with shows like Jeopardy, Wheel of Fortune, and Family Feud (all set as Favorites). But a local news broadcast I have set as a favorite has over 3200 past airings in the Past Airings list, and some other long-running TV shows seem to be alright. Though some of the long-running TV shows (like daytime soap operas that have had more than 1000 airings) seem to be having their Past Airings item list pruned down to under 1000 so the blank Future Airings doesn't occur with those shows.
__________________
--Jason

Server Hardware: GIGABYTE GA-EP45-UD3R, Intel Q9550 CPU 2.83GHz, 11GB RAM, 1xHDHR, 1xHVR1600, 1xHVR2250
29TB Server Storage: 1TB SSD (OS), 1TB (data), 2x6TB+2x10TB (22TB FlexRaid storage pool), 2x2TB (recordings), 1x750GB (VMs).
Server Software: Win10 Pro x64 OS, SageTV 64bit v9.2.0.441, Java 1.8 u241, PlayOn, Comskip (Donator) v0.82.003, WampServer v2.5.
Clients: 3xHD300s, 2xHD100, 2xPlaceshifters
Reply With Quote
  #37  
Old 04-18-2016, 11:29 AM
Narflex's Avatar
Narflex Narflex is offline
Sage
 
Join Date: Feb 2003
Location: Redondo Beach, CA
Posts: 6,349
Quote:
Originally Posted by robogeek View Post
I see this too with some shows, running SageTV v9. It seems like it may be related to the number airings (or watched airings) a show has had. My wiz.bin is about 10 years old, so it has tracked many airings. When the blank Future Airings list occurs, the Past Airings list is always capped at exactly 1000 items. Seems like there is some sort of limit being imposed under certain circumstances and when Past Airings=1000, Future Airings fail to show. I see it happen with shows like Jeopardy, Wheel of Fortune, and Family Feud (all set as Favorites). But a local news broadcast I have set as a favorite has over 3200 past airings in the Past Airings list, and some other long-running TV shows seem to be alright. Though some of the long-running TV shows (like daytime soap operas that have had more than 1000 airings) seem to be having their Past Airings item list pruned down to under 1000 so the blank Future Airings doesn't occur with those shows.
This makes perfect sense as the search API is used to find these items. If you go into Detailed Setup->Customize and change the "Maximum Results per Search" value (I set mine to 10000) then it'll fix this. If you're using an extender though, you'll need to manually set it in the Sage.properties file on the server though which is: wizard/max_search_results
__________________
Jeffrey Kardatzke
Google
Founder of SageTV
Reply With Quote
  #38  
Old 04-19-2016, 06:28 PM
Denali Denali is offline
Sage Advanced User
 
Join Date: Aug 2008
Location: South Florida
Posts: 169
Thanks Narflex for this info. It was last reason for not upgrading to version 9. In SageTV7.xml a minor problem with multiple blank lines between actors in "View Series Information" corrected by changing

Action Name="&quot; \n \n \n&quot;"
to
Action Name="&quot; \n&quot;"
__________________
HTPC: Gigabyte GA-Z170XP-SLI, I7-6700, 16GB, Windows 10 Pro x64, Hauppauge HVR-1600, WinTV-dualHD, Colossus 2, Samsung 850 EVO 120GB, Seagate 3TB, WD 3TB, 3TB, 5TB, Java v1.8.0_231, SageTVx64 v9.2.1.826, Samsung UN60EH6003F, Dish ViP222K, ViewHD 1x2 HDMI Splitter.
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Sage.properties file in SageTV7 wayner SageTV Beta Test Software 8 05-25-2010 08:16 PM
SageTV7, Win7 and UAC wayner SageTV Beta Test Software 1 05-20-2010 05:54 PM
Flagging guide anomalies? zoundz SageTV Software 5 07-29-2007 08:27 AM
Favorite Priority Recording Anomalies RAlfieri SageTV Software 6 04-09-2007 10:33 PM
Favorites recording anomalies Neo SageTV Software 2 01-08-2006 08:19 PM


All times are GMT -6. The time now is 04:50 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2023, vBulletin Solutions Inc.
Copyright 2003-2005 SageTV, LLC. All rights reserved.