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,152

Full Statistics

Online Users
There are currently 1038 online users.
» 0 Member(s) | 1032 Guest(s)
Applebot, Baidu, Bing, Facebook, Google, Yandex

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

 
  Translation issues
Posted by: fuchstractor - 2011-07-09, 10:57 PM - Forum: Weather / Weather2 - Replies (2)

I got involved with NPVR and its translation recently. Weather information is quite a handy feature in a PVR app so I decided to include it too. Translation is done via XML files.

After a few days of work, I'd like to point out tiny issues in Weather that could be improved.

First an easy one: the string 'Weather Advisories, Watches & Warnings (1 of 1)' inlcudes '&' which cannot be included in a valid XML thus cannot be translated (brokes the whole translation).

Another one is wind direction. Would it be possible to put the directions into separate strings? (Unless it comes it comes from Accuweather in a whole line) Something like '9 m/s (17 m/s), WSW' is impossible to translate, 3 data fields give almost an infinite number of combinations.

Print this item

  Updated and somehow busted my setup - PCH hangs
Posted by: wtg - 2011-07-09, 09:30 PM - Forum: MVPMCX2 and other NMT stuff - Replies (4)

I'm not sure what I did, and even more upsetting, I'm not sure how to fix it.

I updated to 2.1.4 recently and that went so swimmingly, I updated the NMT software too running the latest installer, then things went south. From the installer, I disabled the "Install/Update NextPVR" option and continued. Install says it completed fine, but every time I have the PCH attempt to load mvpmc, it hangs with a white screen and:

Mount //192.168.1.50/mvpmc i

on the screen. The IP address and the share name are correct. I don't know what the little "i" afterwards is all about.

I did by chance happen to install some Windows 7 updates around the same time, so I've thought perhaps that process screwed something up with my share, but if so I can't figure out what.

The share still exists and still allows full guest access. The share scripts are all there, and while my npvr.cgi script does show it was touched - based on the date modified - I don't notice anything that was changed. I load mvpmcx2 automatically via an index.htm and that still starts npvr.cgi fine, but of course hangs as shown above. The mount command in npvr.cgi appears as follows:
mount -t cifs //192.168.1.50/mvpmc /etc/mvpmc -o username=root,rw

I've tried username=guest and even hard-coded a userid and password too... no luck.

The firewall rules still exist for NextPVR and NRecord. In fact, I disabled the firewall completely just to be sure that wasn't it, but no luck.

Having re-run the installer a couple times now, I know the first time I ran it I did NOT put in the mac address suffix, clicking too quickly to notice I was asked for it. I've since removed the partial mac mvp settings from the config.xml and re-run with the correct MAC address. If there's anything else my first run might have screwed up, I can't find it.

Any suggestions as to how and fix things again? Admittedly, things have been working so well for so long, I'm sure I've forgotten a few things to check. It really seems like it's the mount command that's failing though and I can't figure out why it's not working all of a sudden.

Thanks,
Tim

Print this item

  Search Skin Problem
Posted by: Northpole - 2011-07-09, 07:32 PM - Forum: Old Stuff (Legacy) - Replies (12)

I'm trying to put together a skin for the new search screen and am having trouble with the @controlSelected option.

Here is a simple skin that I've used for this example:

Code:
<Skin> <Element name="FirstLetterListView" location="0,0" size="100,100" alpha="255" visibleRows="10"/> <Element name="FirstLetterListItemNormal" location="4,5" size="5,5" alpha="255" alphaFade="true"> <Text text="@letter" location="0,0" size="100,100" font="Default" align="Center" valign="Center"/> </Element> <Element name="FirstLetterListItemSelected" location="4,5" size="5,5" alpha="255" alphaFade="true"> <Rect visible="@controlSelected" location="0.25,0.25" size="98,96" fillColor="Blue"/> <Text visible="@controlSelected" text="@letter" location="0,0" size="100,100" font="Default" align="Center" valign="Center"/> <Rect visible="@controlNotSelected" location="25.5,0.25" size="98,96" fillColor="Green"/> <Text visible="@controlNotSelected" text="@letter" location="0,0" size="100,100" font="Default" align="Center" valign="Center"/> </Element> <Element name="ShowNameListView" location="0,0" size="100,100" alpha="255" visibleRows="10"/> <Element name="ShowNameListItemNormal" location="10,5" size="45,5" alpha="255" alphaFade="true"> <Text text="@showName" location="0,0" size="100,100" font="Default" align="Left" valign="Center"/> </Element> <Element name="ShowNameListItemSelected" location="10,5" size="45,5" alpha="255" alphaFade="true"> <Rect visible="@controlSelected" location="0.25,0.25" size="98,96" fillColor="Blue"/> <Text visible="@controlSelected" text="@showName" location="0,0" size="100,100" font="Default" align="Left" valign="Center"/> <Rect visible="@controlNotSelected" location="25.5,0.25" size="98,96" fillColor="Green"/> <Text visible="@controlNotSelected" text="@showName" location="0,0" size="100,100" font="Default" align="Left" valign="Center"/> </Element> <Element name="ShowTimeListView" location="0,0" size="100,100" alpha="255" visibleRows="10"/> <Element name="ShowTimeListItemNormal" location="56,5" size="42,5" alpha="255" alphaFade="true"> <Text text="@showTime" location="0,0" size="100,100" font="Default" align="Left" valign="Center"/> </Element> <Element name="ShowTimeListItemSelected" location="56,5" size="42,5" alpha="255" alphaFade="true"> <Rect visible="@controlSelected" location="0.25,0.25" size="98,96" fillColor="Blue"/> <Text visible="@controlSelected" text="@showTime" location="0,0" size="100,100" font="Default" align="Left" valign="Center"/> <Rect visible="@controlNotSelected" location="25.5,0.25" size="98,96" fillColor="Green"/> <Text visible="@controlNotSelected" text="@showTime" location="0,0" size="100,100" font="Default" align="Left" valign="Center"/> </Element> <Element name="ShowTimeListSelectionMetaData" location="0,0" size="100,100" alpha="255"> <Text text="@title" location="5,60" size="90,5" font="Default" align="Left" valign="Center"/> <Text text="@period" location="5,65" size="90,5" font="Default" align="Left" valign="Center"/> <Text text="@subtitle" location="5,70" size="90,5" font="Default" align="Left" valign="Center"/> <Text text="@channel" location="5,75" size="90,5" font="Default" align="Left" valign="Center"/> <Text text="@description" location="5,80" size="90,15" font="Default" align="Left" wrap="true"/> </Element> </Skin>

What should happen when I tab between the 3 different columns of the "First letter", "Show Title" and "Show Time" is that the unselected columns should be all green. Unfortunately, only about the last 2/3 of each of the unselected columns are green, the rest has no coloring at all.

Attached is some screen shots and the zipped skin.

Thanks.

Print this item

  Problem with NextPVR and automatic skipping playing on NMT
Posted by: BrettB - 2011-07-09, 05:02 PM - Forum: Legacy (v4.x and earlier) - Replies (14)

Earlier this morning, I encountered a new problem. I was watching Big Brother and things seemed to be playing fine. It was about half over, did a commercial skip, began playing again after the commercial, then ended playback and went back to the recordings list. I wasn’t paying that much attention, and thought that it was at the end of the episode and comskip had just cut off the last "teaser" segment. So I tried playing it again and skipping to the end. (I had to do it a couple of times, so you’ll see that in the logs.) Then I discovered, that it had NOT actually been at the end. I kept skipping back to find the point where it had ended prematurely, and found that it was just after the commercial skip at 28 minutes in. This time, when I let it keep playing for a minute or so, it went on just fine. I then stopped playback to get logs which are attached. I’ve also included the timing and comskip files.

Martin has already looked at the logs and his response is:

Quote:mvpmcx2 is doing what it was told and at ~10:46 in the MVP log, NPVR told it to seek to 3653 seconds, so I think NextPVR was using wrong comskip point, I don't see anything else there.

So, it appears to be a problem with NextPVR. Sub, can you please take a look?

Print this item

  Login Screen looks off since last update
Posted by: ydekmekji - 2011-07-09, 12:55 PM - Forum: NextPVR Enhanced Web Admin (NEWA) - Replies (5)

Attached is my login screen--i can't access my guide. I went through the WIKI's reinstallation of NEWA but that didn't solve my problem. I can confirm that this is what it looks like on Firefox, IE, and Chrome. Please advise.

Print this item

  DVD from HDD playback
Posted by: msrtlt - 2011-07-09, 12:13 PM - Forum: Legacy (v4.x and earlier) - Replies (3)

Hello,

I am having difficulties playing DVDs from hard drive. Some play, some do not. VLC is able to play all of them. Is there a way to configure nPvr to use an external player such as VLC?

Thank you

Print this item

  XMLTV GUI : XMLTV Radio Times 3.14.01 released
Posted by: steeb - 2011-07-09, 11:53 AM - Forum: General Discussion - Replies (1)

Dear all,

FYI if of interest:

XMLTV Radio Times version 3.14.01 has just been released.
Windows Version:
http://www.birtles.org.uk/xmltv/xmltvgui_3.14.01W.exe
Linux Version:
http://www.birtles.org.uk/xmltv/xmltvgui_3.14.01L.tar.gz
The changes are:
-Fixed uk_rt crashing if cache is tuned off and a channel is empty -Limited data to today onwards when max days is specified -Fixed xml escaping for uk_rt -Fixed schedules direct not downloading the channel list if a station is in map but not station list


cheers

steeb

Print this item

  hauppauge Nova-HD-S2 and 2.1.4
Posted by: srhutch - 2011-07-09, 10:40 AM - Forum: Legacy (v4.x and earlier) - Replies (5)

It would appear that since I have up upgraded to 2.1.4 my nova-hd-s2 card will on scan a few channels, I think they maybe S2 ones.

i have attached the logs.

If you need screen shots of the scans let me know.

Print this item

  Multi record + multi tuners
Posted by: psycik - 2011-07-09, 05:03 AM - Forum: Legacy (v4.x and earlier) - Replies (3)

Hi Still looks like weire having issues after 2.1.4 with multi record and multiple tuners.

Have a look at NZ next top model, being stopped I think for trinny and susanna - both fom about 7:30 pm on 08/07/2011 (don't hate me for my wife's recordings Big Grin ).

The problem seems to manifest with back to back recordings on different frequencies. Even though there are possible tuners to use, only one is being used.

Print this item

  v2.14 - Record Season (All Episodes on this channel)
Posted by: Digger - 2011-07-09, 01:17 AM - Forum: Legacy (v4.x and earlier) - Replies (12)

1. Click on episode title in TV-Guide. 2. Select Recording Type: Record Season (All episodes on this channel). 3. <OK> out. 4. Go to Main Menu/ Recording, scroll to Recurring Recordings and note for example, episode is scheduled for recording at 11:00pm on 12th and perhaps again at 11:00pm on 14th, etc. Whoops...what about the repeat episode broadcast a 5:00am the following mornings? Nope, not present. So, step 5 is to repeat steps 1>4 again, and select the 5:00am morning broadcast (13th + 15th) "all episodes."

6. Now, scroll to Pending Recordings and note that ALL identically titled episode record times and dates are simply duplicates of original 11:00pm record session. 5:00am sessions and dates, although apparent in Recurring Recordings, do not appear in pending, anywhere.

I suspect that this may in part be a conversion discrepancy in the DateTimeGroup routines, but have only glanced at the logs, and have no idea why, if one selects "All episodes," repeat episodes should be ignored.

My expectations are that when one selects "Record Season (all episodes on this channel), regardless of episode time/ date it will be recorded, even if repeat performance.

Hope all this makes sense, but I am really old and tired so, go easy on me...Smile

There are only 3 very small screen caps within the attached "All Episodes.zip" for anyone interested in visual aids.Smile

Attached Logs, db3 and screen caps (All Episodes.zip)....

Print this item

Pages (6435): « Previous 1 … 1682 1683 1684 1685 1686 … 6435 Next »
Jump to page 

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