NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Portal

Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 20,179
» Latest member: furtiolli195
» Forum threads: 65,374
» Forum posts: 602,148

Full Statistics

Online Users
There are currently 1002 online users.
» 1 Member(s) | 996 Guest(s)
Baidu, Bing, Facebook, Google, Yandex, mvallevand

Latest Threads
HDHomeRun can't find tune...
Forum: Linux
Last Post: mvallevand
2026-09-01, 05:58 PM
» Replies: 1
» Views: 75
Upcoming NextEnd addon an...
Forum: Add-ons (3rd party plugins, utilities and skins)
Last Post: mvallevand
2026-08-31, 04:17 PM
» Replies: 0
» Views: 88
Can't upgrade from 6.1.1....
Forum: NextPVR Support
Last Post: blobbyguts
2026-08-31, 10:56 AM
» Replies: 1
» Views: 76
NextEnd and NFL Preseason
Forum: Windows
Last Post: mvallevand
2026-08-30, 03:13 PM
» Replies: 1
» Views: 119
New version problem with ...
Forum: Windows
Last Post: Swami
2026-08-30, 12:23 AM
» Replies: 47
» Views: 3,779
DVB-T scanning issue - fo...
Forum: Docker amd64
Last Post: mvallevand
2026-08-28, 08:36 AM
» Replies: 1
» Views: 168
Channels not detected in ...
Forum: Windows
Last Post: mvallevand
2026-08-28, 03:57 AM
» Replies: 5
» Views: 3,433
Need help with hardened d...
Forum: Docker amd64
Last Post: bfg100k
2026-08-26, 02:41 AM
» Replies: 5
» Views: 344
Avoiding duplicates of sp...
Forum: Windows
Last Post: mvallevand
2026-08-25, 04:37 PM
» Replies: 4
» Views: 250
NPVR Tray stuck showing E...
Forum: Windows
Last Post: mvallevand
2026-08-24, 02:08 PM
» Replies: 9
» Views: 528

 
  FF/Rewind rather than skipping??
Posted by: bassic - 2011-08-17, 04:30 AM - Forum: Legacy (v4.x and earlier) - Replies (15)

I'm new to npvr so excuse me if my question is poorly formed. The eventghost/npvr/xbmc all-at-once learning curve is a bit steep at times. Smile

I want my fast forward and rewind keys to do just that when playing back a recording, rather than skipping. Looking in keymappings.xml the relevant bit seems to be this:

<Key code="{CTRL}Right" command="SkipForward"/>
<Key code="{CTRL}Left" command="SkipBack"/>
<Key code="{CTRL}R" command="SkipRW"/>
<Key code="{CTRL}F" command="SkipFF"/>

Ctrl+F and Ctrl+R (the ff/rewind keys on my remote) do perform the skip so it seems to be working as intended. Am I able to edit the command fields to make them do rewind and fast forward rather than skip? Four skip keys is more than I need!

Is there a list of valid commands? The reference in the wiki seems a bit incomplete/out of date.

Hope that makes sense, cheers!

ps great product, many thanks to all those who contributed.

Print this item

  C# Tricks for NPVR
Posted by: imilne - 2011-08-16, 07:01 PM - Forum: Developers - Replies (8)

I know that at least a few of us don't have much experience with C#, so I thought it might be nice to have a thread with short tips and tricks, but obviously focused around NPVR and its API.

Here's one to kick things off...

This demonstrates two things: how to let a plugin continue to work if the user's skin doesn't support it, and how to merge the contents of a "global.xml" skin file with another file. I needed the latter to define some extra fonts that aren't in the main set without having to redefine them in every skin file that my plugin uses (popups, different views, and so on).

Code:
internal SkinHelper GetSkinHelper(string name) { SkinHelper shMain = null; SkinHelper shGlbl = null; // Load the required files, either from the current skin's folder... if (Directory.Exists(SettingsHelper.GetInstance().GetSkinDirectory() + "VideosPlus")) { shMain = new SkinHelper("VideosPlus\\" + name); shGlbl = new SkinHelper("VideosPlus\\global.xml"); } // ...or from the Default skin if they couldn't be found else { shMain = new SkinHelper("..\\Default\\VideosPlus\\" + name); shGlbl = new SkinHelper("..\\Default\\VideosPlus\\global.xml"); } // Now merge in everything found in global.xml DataSet dsMain = new DataSet(); DataSet dsGlbl = new DataSet(); dsMain.ReadXml(new XmlNodeReader(shMain.GetBackingDocument())); dsGlbl.ReadXml(new XmlNodeReader(shGlbl.GetBackingDocument())); dsMain.Merge(dsGlbl); shMain.GetBackingDocument().LoadXml(dsMain.GetXml()); return shMain; }

Feel free to use, abuse and critique, especially if it turns out that there's a better way of doing it Big Grin

Iain

Print this item

  Unable to scan
Posted by: OTAjunkie - 2011-08-16, 05:53 PM - Forum: Legacy (v4.x and earlier) - Replies (21)

Canadian stations have now begun the transition to digital.
Yesterday I was able to scan and add one new channel.
Today there is another newbie, when I run a scan on any of the three tuners (ATI650,Haup2250) I get a result of one and only one different channel and am unable to see the new channel.
I use TSreader and it sees the new staion.
I also have a dual boot with GBpvr on that OS and it sees the new channel
Npvr 2.1.5 AND patched
Ran DVBfix too

please help!!

Print this item

  SBS from NZ
Posted by: psycik - 2011-08-16, 09:38 AM - Forum: General Discussion - Replies (14)

Has anyone that had SBS over here, lost it recently?

I'm getting not signal on it. Now it could be from the snow (when I'm testing it) but last good recording I've got is from 6/August.

Print this item

  Watched for videos
Posted by: GM7RQk - 2011-08-16, 06:49 AM - Forum: Wishlist - Replies (4)

I wonder if it would be possible to have some indication if you have watched a file in the video library, perhaps the date it was last watched?

would be great for keeping track of where you are in a TV series etc.

Any thoughts ?

Print this item

  file extensions showing in library screens
Posted by: johnsonx42 - 2011-08-15, 10:32 AM - Forum: Wishlist - Replies (4)

I thought somewhere along the way we'd disabled the display of file extensions in the various library screens? Am I remembering GB-PVR? Anyhow, it'd be cosmetically pleasing to not see the file extensions.

Print this item

  pictures screensaver
Posted by: nofear - 2011-08-15, 07:14 AM - Forum: Legacy (v4.x and earlier) - Replies (4)

Hi,

I have a problem with the screen saver. My pictures folder is all set up and the pictures work fine when using the browser but when the screen saver comes on it just displays a blank white square where the random picture should be.

Any ideas?

Print this item

  Snowing here
Posted by: sub - 2011-08-14, 11:43 PM - Forum: General Discussion - Replies (22)

I know it's not a novelty for a lot of you, but its showing here. Unreal. We never get snow in Wellington.

It snowed yesterday for a couple of hours, and started again about an hour ago. All the tree's and roofs are coated and it looks like some surreal postcard christmas scene.

Print this item

  USB-UIRT as input device
Posted by: stefan - 2011-08-14, 09:36 PM - Forum: Legacy (v4.x and earlier) - Replies (4)

Hi,

Just switched to NPVR. Love the work you've done with setup, it's really nice Smile

One question, if I want to use my usb-uirt as an input device just like I've done in gbpvr, am I out of luck?

/Stefan

Print this item

  PreferAC3
Posted by: imilne - 2011-08-14, 06:22 PM - Forum: GB-PVR Support (legacy) - Replies (7)

Does such a setting exist for GBPVR?

I'm suddenly getting audio description mpeg on Channel 4 HD, rather than the DD track. I dunno if this is something that's just changed, or whether I've never noticed before.

Iain

Print this item

Pages (6435): « Previous 1 … 1657 1658 1659 1660 1661 … 6435 Next »
Jump to page 

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