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,170
» Latest member: Lysolchip
» Forum threads: 65,371
» Forum posts: 602,136

Full Statistics

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

Latest Threads
NextEnd and NFL Preseason
Forum: Windows
Last Post: Swami
2 hours ago
» Replies: 0
» Views: 19
New version problem with ...
Forum: Windows
Last Post: Swami
Today, 12:23 AM
» Replies: 47
» Views: 3,695
DVB-T scanning issue - fo...
Forum: Docker amd64
Last Post: mvallevand
2026-08-28, 08:36 AM
» Replies: 1
» Views: 118
Channels not detected in ...
Forum: Windows
Last Post: mvallevand
2026-08-28, 03:57 AM
» Replies: 5
» Views: 3,410
Need help with hardened d...
Forum: Docker amd64
Last Post: bfg100k
2026-08-26, 02:41 AM
» Replies: 5
» Views: 282
Avoiding duplicates of sp...
Forum: Windows
Last Post: mvallevand
2026-08-25, 04:37 PM
» Replies: 4
» Views: 210
NPVR Tray stuck showing E...
Forum: Windows
Last Post: mvallevand
2026-08-24, 02:08 PM
» Replies: 9
» Views: 490
Radio stations for NextPV...
Forum: Add-ons (3rd party plugins, utilities and skins)
Last Post: LynnO
2026-08-23, 07:28 PM
» Replies: 28
» Views: 10,142
Desktop Client lost it's ...
Forum: Windows
Last Post: sub
2026-08-23, 03:37 AM
» Replies: 6
» Views: 365
Record playback manual sk...
Forum: Linux
Last Post: mvallevand
2026-08-23, 03:03 AM
» Replies: 4
» Views: 259

 
  Update for BDA Tuning file - Yorkshire Idle
Posted by: bgowland - 2012-09-25, 11:46 PM - Forum: Legacy (v4.x and earlier) - Replies (4)

sub - finally got around to getting an indoor TV aerial so I can use npvr for testing at least. After a slightly frustrating 30 minutes twiddling the aerial I realised I was constantly only getting results for 2 Freeview MUXes so did some research.

The attached has the current tuning for the Idle transmitter in Yorkshire.

Cheers,
Brian

Print this item

  New to nextpvr, problems after install
Posted by: KRA - 2012-09-25, 07:31 PM - Forum: Legacy (v4.x and earlier) - Replies (19)

Hi, I've been pointed in this direction after reading about nextpvr on xbmc forum.

Not having the patience to wait for next release with xbmc support I downloaded 2.5.5 to test. I've run through setup and all seems to be correct, scanning for channels was no problem and it found all my channels. However it has yet to populate epg, and I fail to start live-tv.

The error I'm handed is "unable to find available capture device"

Looking at the log it seems like tuner is working (it manage to scan channels, and I know its working from other software)

However the Nrecord log has some errors I can't figure out.

Print this item

  HELP ! I've broken it :-(
Posted by: R1Dave - 2012-09-25, 07:21 PM - Forum: Legacy (v4.x and earlier) - Replies (7)

I've had a few issues with certain channels freezing on adverts. I read that the latest SAF codecs can help so I decided to have a clear-out and install the latest SAF6. unfortunately i've managed to brake something in the process.

Now, whenever I try to watch live TV, NDigitalHost.exe crashes. I've attached my logs and config. i can watch recordings ok but not live. Also, if i try to record something, that also fails.

I'm now in big trouble with the wife - help!

Print this item

  Is it Possible to Pause the Graph?
Posted by: wileecoyote - 2012-09-25, 06:49 PM - Forum: Kodi / XBMC - Replies (27)

I know with MediaPortal they have a setting in the TV Server setup to allow you to pause the graph instead of stopping. This makes for faster start/channel changing times.

Since channels start and change just fine it is just an enhancement, no rush on this one (I'm just sure people will talk about it though. Some reason people are very finicky about channel change times.)

Print this item

  Upcoming Recordings Showing In Recordings List
Posted by: wileecoyote - 2012-09-25, 06:25 PM - Forum: Kodi / XBMC - Replies (2)

The recordings list shows all recordings, past, present and future. I was playing around with the addon and added this code to only show recordings that are completed.

This code is in the GetRecordings(ADDON_HANDLE handle) method. Code modifed is in bold

// include already-completed recordings
CStdString response;
CStdString status;
CStdString title;

if (DoRequest("/service?method=recording.list&filter=ready", response) == HTTP_OK)
{
TiXmlDocument doc;
if (doc.Parse(response) != NULL)
{
PVR_RECORDING tag;

TiXmlElement* recordingsNode = doc.RootElement()->FirstChildElement("recordings");
TiXmlElement* pRecordingNode = recordingsNode->FirstChildElement("recording");
for( pRecordingNode; pRecordingNode; pRecordingNode=pRecordingNode->NextSiblingElement())
{
[COLOR="#FF0000"] status = pRecordingNode->FirstChildElement("status")->FirstChild()->Value();
if(status == "Ready")
{[/COLOR]

memset(&tag, 0, sizeof(PVR_RECORDING));

PVR_STRCPY(tag.strRecordingId, pRecordingNode->FirstChildElement("id")->FirstChild()->Value());
//PVR_STRCPY(tag.strTitle, pRecordingNode->FirstChildElement("title")->FirstChild()->Value());
PVR_STRCPY(tag.strDirectory, pRecordingNode->FirstChildElement("name")->FirstChild()->Value());

title = pRecordingNode->FirstChildElement("name")->FirstChild()->Value();

if (pRecordingNode->FirstChildElement("desc") != NULL && pRecordingNode->FirstChildElement("desc")->FirstChild() != NULL)
{
PVR_STRCPY(tag.strPlot, pRecordingNode->FirstChildElement("desc")->FirstChild()->Value());
[COLOR="#FF0000"] title += " - ";
title += pRecordingNode->FirstChildElement("desc")->FirstChild()->Value();[/COLOR]

}

PVR_STRCPY(tag.strTitle, title);

tag.recordingTime = atoi(pRecordingNode->FirstChildElement("start_time_ticks")->FirstChild()->Value());
tag.iDuration = atoi(pRecordingNode->FirstChildElement("duration_seconds")->FirstChild()->Value());

CStdString strStream;
strStream.Format("http://%s:%d/live?recording=%s", g_szHostname, g_iPort, tag.strRecordingId);
strncpy(tag.strStreamURL, strStream.c_str(), sizeof(tag.strStreamURL));


PVR->TransferRecordingEntry(handle, &tag);

}
}
}
}

Print this item

  Multiple simultaneous
Posted by: sub - 2012-09-25, 06:00 PM - Forum: Kodi / XBMC - Replies (1)

Wilee, for the multiple simultaneous clients problem, can you try changing one line of code in the addon to check it helps, before I try commiting it to git.

Change the following line in in pvrclient-nexpvr.cpp/OpenLiveStream():
sprintf(line, "GET /live?channel=%d&client=XBMC HTTP/1.0\r\n", channelinfo.iChannelNumber);

To:
sprintf(line, "GET /live?channel=%d&client=XBMC-%s HTTP/1.0\r\n", channelinfo.iChannelNumber, m_sid);

Print this item

  Problem with inset video on the main menu
Posted by: Goldorak - 2012-09-25, 12:12 PM - Forum: Legacy (v4.x and earlier) - Replies (10)

Hi,

We have problem with the inset video on the main menu when I close my tv and after a couple of minute I turn it on. The inset video is active on the main menu. When I try to change to the full screen mode the nPVR software froze and we need to restart nPVR.

Where is the setting to disable this function or do you have solution to fix the problem.

We have an hauppauge wintv2250
on AMD ATHLON x2. 2 ghz.
Windows 7 64 bits
npvr last version

Thanks,
Regards,


Goldorak

Print this item

  recording service suddenly fails to start
Posted by: Wakalaka - 2012-09-25, 04:56 AM - Forum: Legacy (v4.x and earlier) - Replies (19)

As of this evening the NPVR recording service fails to start. Attached are logs and screenshots. I am lost as to why it suddenly breaks.
I rebooted with no success. I noticed I no longer have an ndigitalhost.log file. My firewall hasn't changed. I checked it and nextpvr.exe,
nrecord.exe, and ndigitalhost.exe are set as Trusted apps (Kaspersky Internet Security). I also disabled KIS and it made no difference.

Print this item

  Editing Kemapping Not Working
Posted by: amullins65 - 2012-09-23, 03:43 PM - Forum: Legacy (v4.x and earlier) - Replies (2)

I am trying to modify keymappings.xml but all of the old hot keys still do their assigned functions and the new keys I assigned don't work. I am trying to modify commands like play, pause, ff, rr

I am running XP and modifying C:\Documents and Settings\All Users\Application Data\NPVR\KeyMappings.xml

I know there are other ways of working around other than changing keymappings, but I already have other programs on my htpc that are using certain hot keys and I want to keep them all the same.

I have tried restarting npvr, restarting the computer, etc. and all the old hot keys are still working

Here is what I have in KeyMapping.xml

<Mapping>
<Subsystem name="General">
<Key code="P" command="Play"/>
<Key code="Escape" command="Escape"/>
<Key code="PageUp" command="PageUp"/>
<Key code="PageDown" command="PageDown"/>
<Key code="Delete" command="Delete"/>

<Key code="S" command="Stop"/>
<Key code="{SPACE}" command="Pause"/>
<Key code="P" command="Play"/>
<Key code="{CTRL}K" command="Record"/>
<Key code="{CTRL}Q" command="PausePlay"/>

<Key code="{CTRL}Right" command="SkipForward"/>
<Key code="{CTRL}Left" command="SkipBack"/>
<Key code="B" command="Rewind"/>
<Key code="F" command="FastForward"/>

<Key code="F7" command="ToggleAspectRatio"/>
<Key code="i" command="ShowOSD"/>

<Key code="{ALT}B" command="Blue"/>
<Key code="{ALT}G" command="Green"/>
<Key code="{ALT}Y" command="Yellow"/>
<Key code="{ALT}R" command="Red"/>

<Key code="{CTRL}E" command="SelectAudio"/>

<Key code="{SHIFT}D8" command="PIP"/>
<Key code="{SHIFT}D3" command="SwapPIP"/>

<Key code="F9" command="MainMenu"/>

<Key code="Home" command="Home/Inset"/>
</Subsystem>
<Subsystem name="MusicPlayback">
<Key code="{CTRL}S" command="Stop"/>
<Key code="{CTRL}Q" command="Pause"/>
<Key code="{CTRL}P" command="Play"/>
<Key code="{CTRL}Right" command="NextTrack"/>
<Key code="{CTRL}Left" command="PreviousTrack"/>
</Subsystem>
<Subsystem name="LiveTV">
<Key code="Add" command="Channel+"/>
<Key code="Subtract" command="Channel-"/>
<Key code="Next" command="Channel-"/>
<Key code="PageUp" command="Channel+"/>
<Key code="Return" command="ChangeChannel"/>
<Key code="{CTRL}X" command="SelectSubtitles"/>
<Key code="{CTRL}W" command="PreviousChannel"/>
<Key code="{CTRL}T" command="ToggleTeletext"/>
</Subsystem>
<Subsystem name="VideoPlayback">
<Key code="{CTRL}X" command="SelectSubtitles"/>
<Key code="{CTRL}T" command="ToggleTeletext"/>
</Subsystem>
<Subsystem name="Recordings">
<Key code="{CTRL}S" command="ToggleSortMode"/>
</Subsystem>
<Subsystem name="TVGuide">
<Key code="{ALT}G" command="SelectGroup"/>
</Subsystem>
</Mapping>

Print this item

  Arguments for PreArchiving.bat and PostArchiving.bat?
Posted by: McBainUK - 2012-09-23, 08:00 AM - Forum: NPVR Documentation - Replies (5)

Can anyone help flesh out the arguments section for the PreArchiving.bat and PostArchiving.bat files on the wiki?

Print this item

Pages (6434): « Previous 1 … 1445 1446 1447 1448 1449 … 6434 Next »
Jump to page 

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