NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public Developers v
« Previous 1 … 18 19 20 21 22 … 93 Next »
Supress Date display in NPVR skin

 
  • 0 Vote(s) - 0 Average
Supress Date display in NPVR skin
Northpole
Offline

Senior Member

Posts: 333
Threads: 34
Joined: Aug 2007
#1
2010-10-02, 04:48 PM
Is there any way to suppress the date and time display in NPVR? The reason I ask is because I would like to not display it when viewing pictures in the slid show mode.

Thanks.

Also, is it possible to have the @previewImage function pickup a default picture in the recordings screen (like in the video screen)
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,661
Threads: 767
Joined: Nov 2003
#2
2010-10-02, 05:05 PM
Northpole Wrote:Is there any way to suppress the date and time display in NPVR? The reason I ask is because I would like to not display it when viewing pictures in the slid show mode.
No, you cant currently. I'll have a think about if there is a way to add a skin option for this without to much change.

Quote:Also, is it possible to have the @previewImage function pickup a default picture in the recordings screen (like in the video screen)
What do you mean exactly?
Northpole
Offline

Senior Member

Posts: 333
Threads: 34
Joined: Aug 2007
#3
2010-10-02, 06:04 PM (This post was last modified: 2010-10-02, 06:09 PM by Northpole.)
Sub,

In the Recordings.xml, I would like to be able to do either one of the following:

If a preview image exists, use it as normal. If no preview is available, then look in the recordings subdirectory for a default.jpg (just like it does for videos and music)

<Element name="ListSelectionMetaData" location="56,11" size="43,78.9" alpha="255" alphaFade="true">
<RoundedRect location="0,0" size="98,99.8" fillColor="Cover" borderColor="CoverEdge" radius="0.2" borderWidth="1px"/>
<Image source="@previewImage" location="26,2" size="46,38" fixedAspectRatio="true" />
<Text text="@name" location="3,40" size="92,10" font="WhiteSmall" align="Center" valign="Center" wrap="true"/>
<Text text="@subtitle" visible="@isItem" location="3,50" size="92,10" font="YellowSmall" align="Center" valign="Center" wrap="true"/>
<Text text="@description" visible="@isItem" location="3,60" size="92,34" font="WhiteMini" align="left" wrap="true"/>
<Text text="@failureReason" visible="@isItem" location="3,95" size="92,4" font="RedMiniItalic" align="Center"/>
</Element>


If that's not an option, then how about trying to determine if a preview image exists like below using the !@hasPreviewImage.

<Element name="ListSelectionMetaData" location="56,11" size="43,78.9" alpha="255" alphaFade="true">
<RoundedRect location="0,0" size="98,99.8" fillColor="Cover" borderColor="CoverEdge" radius="0.2" borderWidth="1px"/>
<Image source="..\_common\default.jpg" visible="!@hasPreviewImage" location="37.5,11.5" size="23,23" fixedAspectRatio="true" />
<Image source="@previewImage" visible="@hasPreviewImage" location="26,2" size="46,38" fixedAspectRatio="true" />
<Text text="@name" location="3,40" size="92,10" font="WhiteSmall" align="Center" valign="Center" wrap="true"/>
<Text text="@subtitle" visible="@isItem" location="3,50" size="92,10" font="YellowSmall" align="Center" valign="Center" wrap="true"/>
<Text text="@description" visible="@isItem" location="3,60" size="92,34" font="WhiteMini" align="left" wrap="true"/>
<Text text="@failureReason" visible="@isItem" location="3,95" size="92,4" font="RedMiniItalic" align="Center"/>
</Element>
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,661
Threads: 767
Joined: Nov 2003
#4
2010-10-02, 06:10 PM
Northpole Wrote:Sub,

In the Recordings.xml, I would like to be able to do either one of the following:

If a preview image exists, use it as normal. If no preview is available, then look in the recordings subdirectory for a default.jpg (just like it does for videos and music)
It actually already does this, but the name is folder.jpg not default.jpg.
Northpole
Offline

Senior Member

Posts: 333
Threads: 34
Joined: Aug 2007
#5
2010-10-02, 06:10 PM
It might also be useful to be able to supress the now playing item.

Thanks.
Northpole
Offline

Senior Member

Posts: 333
Threads: 34
Joined: Aug 2007
#6
2010-10-02, 06:56 PM
sub Wrote:It actually already does this, but the name is folder.jpg not default.jpg.

Hmmm, Just tried that and it doesn't seem to work. I'm still using v1.5.28, perhap that's new in v1.5.31.

Thanks.
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,661
Threads: 767
Joined: Nov 2003
#7
2010-10-02, 07:15 PM
I cant remember if anything on that front between 1.5.38 - 1.5.31. Maybe. It definitely loads up folder.jpg here though.
Jaggy
Offline

Posting Freak

Carterton, NZ
Posts: 3,625
Threads: 148
Joined: Mar 2006
#8
2010-10-02, 07:28 PM
Mine also when viewing in the Recordings screen doesn't display folder.jpg's that are in the recording sub directory along with the actual recording? When viewing in Videos they show though?
Like Northpole I would quite like to be able to display a default (or whatever name) image if there is no image available in Meda\show for the Recordings view
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,661
Threads: 767
Joined: Nov 2003
#9
2010-10-02, 07:40 PM
Can you see if this makes the folder.jpg appear for you?
Jaggy
Offline

Posting Freak

Carterton, NZ
Posts: 3,625
Threads: 148
Joined: Mar 2006
#10
2010-10-02, 08:02 PM
Nope no difference, I have a folder,jpg in E:\_Recordings\Extreme Rescue that shows in Videos but there is no mention of it trying to find it in Recordings in the logs (attached).

Although from my point of view I don't really see that displaying a folder.jpg from the automatically created sub directory is of a great deal of use anyway even though NPVR copies one there automatically if there is one in Media\shows because if there is one in Media\shows it will display it anyway??
« 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
  Way to tell programmatically if channel load in from NPVR has finished... gdogg371 3 2,341 2021-03-11, 03:59 PM
Last Post: mvallevand
  Plugins and NPVR. Where do we start? sub 80 68,123 2020-11-26, 10:02 PM
Last Post: mandai
  Test/Development environment for npvr.db3 scJohn 10 4,233 2020-09-04, 09:14 PM
Last Post: scJohn
  How to extract M3U8 and get matching XMLTV guide data from NPVR almightyj 0 3,395 2018-10-23, 07:24 AM
Last Post: almightyj
  Skin help (correct location?) SFX Group 4 3,847 2018-01-24, 07:42 AM
Last Post: pBS
  Web Client: Slow with separate thread and date not obscured cncb 32 15,729 2016-10-10, 02:01 PM
Last Post: mvallevand
  skin question pBS 2 3,319 2016-06-18, 07:03 PM
Last Post: pBS
  ios app to control npvr ui idea jnbooker15 4 3,567 2015-09-21, 10:19 PM
Last Post: sub
  ios app to control npvr ui idea jnbooker15 0 2,447 2015-09-21, 06:39 PM
Last Post: jnbooker15
  Skin - view further into the future, scale the guide Vitenka 5 3,241 2014-11-26, 07:28 PM
Last Post: Vitenka

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

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

Linear Mode
Threaded Mode