|
SageTV Studio Discussion related to the SageTV Studio application produced by SageTV. Questions, issues, problems, suggestions, etc. relating to the Studio software application should be posted here. |
|
Thread Tools | Search this Thread | Display Modes |
#21
|
||||
|
||||
Quote:
Quote:
__________________
SageTCPServer (2.3.5): Open source TCP interface to the SageTV API MLSageTV (3.1.8)/Sage Media Server (1.13): SageTV plugin for MainLobby/CQC TaSageTV (2.58)/TaSTVRemote (1.14): Monitor/control SageTV with an Android device TbSageTV (1.02)/STVRemote (1.11): Monitor/control SageTV with a PlayBook 2 TiSageTV (1.64)/TiSTVRemote (1.09): Monitor/control SageTV with an iPhone/iPod/iPad |
#22
|
||||
|
||||
Quote:
- 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. |
#23
|
||||
|
||||
Quote:
Quote:
Code:
GetShowEpisode(sage.Show Show) Returns the episode name for the specified Show. Code:
GetShowEpisode public java.lang.String GetShowEpisode(sage.Show Show) Returns the episode name for the specified Show. For music files, this will be the name of the song. Parameters: Show - the Show object Returns: the episode name for the specified Show. For music files, this will be the name of the song. For imported videos, this will be the title of the file And for Title it's actually the second one: Code:
GetShowTitle(sage.Show Show) Returns the title of the specified Show. Code:
GetShowTitle public java.lang.String GetShowTitle(sage.Show Show) Returns the title of the specified Show. For music this will correspond to the Album name. For imported videos, For imported videos, this will be the title of the file with the relative import path as it's prefix. Parameters: Show - the Show object Returns: the title of the specified Show
__________________
SageTCPServer (2.3.5): Open source TCP interface to the SageTV API MLSageTV (3.1.8)/Sage Media Server (1.13): SageTV plugin for MainLobby/CQC TaSageTV (2.58)/TaSTVRemote (1.14): Monitor/control SageTV with an Android device TbSageTV (1.02)/STVRemote (1.11): Monitor/control SageTV with a PlayBook 2 TiSageTV (1.64)/TiSTVRemote (1.09): Monitor/control SageTV with an iPhone/iPod/iPad |
#24
|
||||
|
||||
Sure -- the most detailed portion is probably the one to follow. Those calls have had to do multiple duties, so extra info about their exceptions were added. This topic is about removing (or at least reducing) the exceptions for how they work in terms of imported videos.
I would suggest that if you find API docs unclear/inconsistent that you submit it as a bug for further clarification. - 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. |
#25
|
||||
|
||||
Right, I was just pointing out why I had no idea that it was the official way it was supposed to work, and might not have been alone. So it might not be breaking that many existing plugins...
__________________
SageTCPServer (2.3.5): Open source TCP interface to the SageTV API MLSageTV (3.1.8)/Sage Media Server (1.13): SageTV plugin for MainLobby/CQC TaSageTV (2.58)/TaSTVRemote (1.14): Monitor/control SageTV with an Android device TbSageTV (1.02)/STVRemote (1.11): Monitor/control SageTV with a PlayBook 2 TiSageTV (1.64)/TiSTVRemote (1.09): Monitor/control SageTV with an iPhone/iPod/iPad |
#26
|
||||
|
||||
Seems to me that if ever there was a time when it's OK to break existing plugins, this is it. I would venture to guess that virtually all V7 plugins are under active development, and very few of them abandoned and their authors MIA, simply because V7 and its plugin system are so new. So the danger of broken plugins staying broken very long is fairly small right now, I should think.
A couple of years from now that might not be the case. So if there are any other APIs you want to change in ways that might break plugins, best to do it sooner rather than later.
__________________
-- Greg |
#27
|
||||
|
||||
Quote:
John |
#28
|
||||
|
||||
Quote:
Maybe this is what you mean? I found old emails (~2006) talking about stripping the relative path off the episode value in order to get a shorter pathless title, then later GetMediaTitle() was changed at some point to simply return the episode value for imported videos, but GetShowTitle() always returned the relative path, as far as I know. If so, yes: this is the stuff we are looking to fix. - 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. |
#29
|
||||
|
||||
Quote:
I guess the point is, I think most people would accept a little short term pain to get rid of the inconsistency between videos and recordings. I also support GKusnick's comments. Now is the time, while V7 plugins are mostly still under active development. Another target for change could be the use of GetShowTitle and GetShowEpisode for music. It's always struck me as a little odd that there is an Album api that doesn't include some form of GetTrackName and that you need to use the Show api for music. At least I can follow the logic for how GetShowTitle and GetShowEpisode are used for music as opposed to how they're used for videos. John |
#30
|
||||
|
||||
Or why there is no ID for an Album... I know that the database has no ID for it, but you could use the ID of the first song or something...
__________________
SageTCPServer (2.3.5): Open source TCP interface to the SageTV API MLSageTV (3.1.8)/Sage Media Server (1.13): SageTV plugin for MainLobby/CQC TaSageTV (2.58)/TaSTVRemote (1.14): Monitor/control SageTV with an Android device TbSageTV (1.02)/STVRemote (1.11): Monitor/control SageTV with a PlayBook 2 TiSageTV (1.64)/TiSTVRemote (1.09): Monitor/control SageTV with an iPhone/iPod/iPad |
#31
|
||||
|
||||
Andy, when you know what version number the changes are going to be in can you give us a heads up. I'm taking this opportunity to merge a couple of plugins while I'm making the changes, so I'll set a MaxVersion in the existing plugins.
John |
#32
|
|||
|
|||
Bump any updates on this?
|
#33
|
||||
|
||||
Good timing; I was looking at posting info about this today.
For imported videos and photos, the title field will now be the title. The episode field will match the title, unless it has been set via metadata. Existing imported files will be updated automatically by SageTV so that the title field is no longer the relative path - it can detect when the title is the relative path, so the title won't be changed if it isn't the rel path. Imported music files are handled the same as before. I'm currently updating the STVs provided by SageTV. Saved online video files probably won't get updated because I found a bug in the way their relative paths were being set by the STV, which has now been fixed. - 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. |
#34
|
|||
|
|||
Quote:
Awesome sounds much better thanks for the update. |
#35
|
||||
|
||||
So I'm guessing this has not made it into the beta yet...
__________________
SageTCPServer (2.3.5): Open source TCP interface to the SageTV API MLSageTV (3.1.8)/Sage Media Server (1.13): SageTV plugin for MainLobby/CQC TaSageTV (2.58)/TaSTVRemote (1.14): Monitor/control SageTV with an Android device TbSageTV (1.02)/STVRemote (1.11): Monitor/control SageTV with a PlayBook 2 TiSageTV (1.64)/TiSTVRemote (1.09): Monitor/control SageTV with an iPhone/iPod/iPad |
#36
|
||||
|
||||
Yes, it has. That beta version that has it just isn't out yet.
- 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. |
#37
|
||||
|
||||
OK, I see that the last beta was a week before your previous post talking about it. Weren't you doing weekly betas before?
__________________
SageTCPServer (2.3.5): Open source TCP interface to the SageTV API MLSageTV (3.1.8)/Sage Media Server (1.13): SageTV plugin for MainLobby/CQC TaSageTV (2.58)/TaSTVRemote (1.14): Monitor/control SageTV with an Android device TbSageTV (1.02)/STVRemote (1.11): Monitor/control SageTV with a PlayBook 2 TiSageTV (1.64)/TiSTVRemote (1.09): Monitor/control SageTV with an iPhone/iPod/iPad |
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Title and Episode on Imported Videos | JREkiwi | Batch Metadata Tools | 20 | 10-27-2010 03:46 PM |
Looking for Title/Season/Episode naming formats to support for metadata scraper | evilpenguin | General Discussion | 17 | 01-08-2009 04:43 PM |
EPG Not showing the shows episode title | FormatC: | SageTV EPG Service | 1 | 07-23-2008 08:38 PM |
Excluding imported audio/video from title search? | GTwannabe | SageTV Software | 0 | 05-25-2006 03:27 PM |
Java Question for STV Developers | mightyt | SageTV Customizations | 10 | 09-29-2004 07:35 AM |