<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[NextPVR Forums - Developers]]></title>
		<link>https://forums.nextpvr.com/</link>
		<description><![CDATA[NextPVR Forums - https://forums.nextpvr.com]]></description>
		<pubDate>Thu, 16 Apr 2026 15:03:28 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Custom recording]]></title>
			<link>https://forums.nextpvr.com/showthread.php?tid=66144</link>
			<pubDate>Thu, 06 Feb 2025 09:29:24 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forums.nextpvr.com/member.php?action=profile&uid=28228">tomx</a>]]></dc:creator>
			<guid isPermaLink="false">https://forums.nextpvr.com/showthread.php?tid=66144</guid>
			<description><![CDATA[Hello i have custom recording set with:<br />
<br />
SELECT * FROM EPG_EVENT WHERE title LIKE '%ᴸᶦᵛᵉ%' AND title LIKE '%EFL%' AND title not LIKE '%HIGHLI%' and channel_oid IN (10259,10256,3963,3964)<br />
<br />
How can i add rule that recording need to last at least 1hour. I dont want to record show with 15 minutes lenght.<br />
<br />
<br />
<img src="https://i.imgur.com/YWBNG9l.png" loading="lazy"  alt="[Image: YWBNG9l.png]" class="mycode_img" />]]></description>
			<content:encoded><![CDATA[Hello i have custom recording set with:<br />
<br />
SELECT * FROM EPG_EVENT WHERE title LIKE '%ᴸᶦᵛᵉ%' AND title LIKE '%EFL%' AND title not LIKE '%HIGHLI%' and channel_oid IN (10259,10256,3963,3964)<br />
<br />
How can i add rule that recording need to last at least 1hour. I dont want to record show with 15 minutes lenght.<br />
<br />
<br />
<img src="https://i.imgur.com/YWBNG9l.png" loading="lazy"  alt="[Image: YWBNG9l.png]" class="mycode_img" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[API call for Recording Complete]]></title>
			<link>https://forums.nextpvr.com/showthread.php?tid=66107</link>
			<pubDate>Sun, 19 Jan 2025 13:04:53 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forums.nextpvr.com/member.php?action=profile&uid=27196">linustorvalds</a>]]></dc:creator>
			<guid isPermaLink="false">https://forums.nextpvr.com/showthread.php?tid=66107</guid>
			<description><![CDATA[Apologies if this has been brought up before. Have searched around the forum as well as done a quick Google but can't find much for what I'm looking for. Close or redirect me if this is inappropriate.<br />
<br />
Is there a specific API call for when a recording is complete or some kind of config file / flag that's changed when this occurs? I'm wanting to develop *something* that gives a notification around the status of recordings. The WebUI knows the status, so I imagine the information is stored somewhere.<br />
Lastly, I see in most threads about the API that it's previously never been documented. Is this still the case in 2025? Even if there is a vague / incomplete list of calls it would save some time, but obviously no worries if not : )]]></description>
			<content:encoded><![CDATA[Apologies if this has been brought up before. Have searched around the forum as well as done a quick Google but can't find much for what I'm looking for. Close or redirect me if this is inappropriate.<br />
<br />
Is there a specific API call for when a recording is complete or some kind of config file / flag that's changed when this occurs? I'm wanting to develop *something* that gives a notification around the status of recordings. The WebUI knows the status, so I imagine the information is stored somewhere.<br />
Lastly, I see in most threads about the API that it's previously never been documented. Is this still the case in 2025? Even if there is a vague / incomplete list of calls it would save some time, but obviously no worries if not : )]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Extra overriding #EXT-X-KEY wishlist]]></title>
			<link>https://forums.nextpvr.com/showthread.php?tid=66081</link>
			<pubDate>Wed, 08 Jan 2025 01:07:11 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forums.nextpvr.com/member.php?action=profile&uid=5939">mvallevand</a>]]></dc:creator>
			<guid isPermaLink="false">https://forums.nextpvr.com/showthread.php?tid=66081</guid>
			<description><![CDATA[I am trying to write an extra that involves sending back an m3u8 containing an AES key<br />
<br />
#EXT-X-KEY:METHOD=AES-128,URI="...",IV=0x30303030303030303030303067020c0b,KEYFORMAT="identity"<br />
<br />
but unfortunately the URI requires two cookies and some headers.<br />
<br />
I haven't been able to make NextPVR accept passed cookies and I am not sure if NextPVR uses passed headers either when it fetches the key either, I couldn't see any logging on getting the key.   <br />
<br />
My first wishlist is that cookies could accepted from Extras (I and guess m3u8 files), perhaps using the Kodi method opf muitiple Set-Cookie= pipes on the url.  These are huge though and in my use case only needed for the key.<br />
<br />
My second wishlist which might be easier is providing an option allowing a override the URI.  The extra could write the key to file and NextPVR could use that files instead of the URI to get the key.<br />
<br />
Martin]]></description>
			<content:encoded><![CDATA[I am trying to write an extra that involves sending back an m3u8 containing an AES key<br />
<br />
#EXT-X-KEY:METHOD=AES-128,URI="...",IV=0x30303030303030303030303067020c0b,KEYFORMAT="identity"<br />
<br />
but unfortunately the URI requires two cookies and some headers.<br />
<br />
I haven't been able to make NextPVR accept passed cookies and I am not sure if NextPVR uses passed headers either when it fetches the key either, I couldn't see any logging on getting the key.   <br />
<br />
My first wishlist is that cookies could accepted from Extras (I and guess m3u8 files), perhaps using the Kodi method opf muitiple Set-Cookie= pipes on the url.  These are huge though and in my use case only needed for the key.<br />
<br />
My second wishlist which might be easier is providing an option allowing a override the URI.  The extra could write the key to file and NextPVR could use that files instead of the URI to get the key.<br />
<br />
Martin]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Manual recording API]]></title>
			<link>https://forums.nextpvr.com/showthread.php?tid=65184</link>
			<pubDate>Thu, 09 Nov 2023 00:39:18 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forums.nextpvr.com/member.php?action=profile&uid=5939">mvallevand</a>]]></dc:creator>
			<guid isPermaLink="false">https://forums.nextpvr.com/showthread.php?tid=65184</guid>
			<description><![CDATA[I am trying to schedule a manual recording for a show in Kodi.  Is there a way using the API to keep it manual if I provide a name?  In this case my 2hr recording is being truncated to one hour.<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>2023-11-08 18:37:37.972 [DEBUG][221]    Got request [127.0.0.1]: /service (recording.save)<br />
2023-11-08 18:37:37.972 [DEBUG][221]    method=recording.save<br />
2023-11-08 18:37:37.973 [DEBUG][221]    parameters:<br />
2023-11-08 18:37:37.973 [DEBUG][221]      method: recording.save<br />
2023-11-08 18:37:37.973 [DEBUG][221]      name: CBC Ottawa News<br />
2023-11-08 18:37:37.973 [DEBUG][221]      recording_id: 0<br />
2023-11-08 18:37:37.973 [DEBUG][221]      channel: 7388<br />
2023-11-08 18:37:37.973 [DEBUG][221]      time_t: 1699484340<br />
2023-11-08 18:37:37.973 [DEBUG][221]      duration: 7260<br />
2023-11-08 18:37:37.973 [DEBUG][221]      pre_padding: 0<br />
2023-11-08 18:37:37.973 [DEBUG][221]      post_padding: 0<br />
2023-11-08 18:37:37.973 [DEBUG][221]      directory_id: Default<br />
2023-11-08 18:37:37.973 [DEBUG][221]      sid: 2da1af8edcdb4e2cb84aa381e888bf22<br />
2023-11-08 18:37:37.974 [DEBUG][221]      client_ip: 127.0.0.1<br />
2023-11-08 18:37:37.974 [DEBUG][221]      user_agent: Kodi/21.0-BETA1 (Windows NT 10.0.22631.2506; W2023-11-08 18:37:37.974 [DEBUG][221]      host_callback: ...<br />
2023-11-08 18:37:37.974 [DEBUG][221]    Schedule Recording from EPGEvent...<br />
2023-11-08 18:37:37.975 [DEBUG][221]    about to record:<br />
&lt;Event&gt;<br />
  &lt;OID&gt;2301140&lt;/OID&gt;<br />
  &lt;Title&gt;CBC Ottawa News&lt;/Title&gt;<br />
  &lt;SubTitle&gt;&lt;/SubTitle&gt;<br />
  &lt;Description&gt;Coverage of the top local news.&lt;/Description&gt;<br />
  &lt;ChannelOID&gt;7388&lt;/ChannelOID&gt;<br />
  &lt;StartTime&gt;2023-11-08T22:59:00.0000000Z&lt;/StartTime&gt;<br />
  &lt;EndTime&gt;2023-11-09T00:00:00.0000000Z&lt;/EndTime&gt;<br />
  &lt;FirstRun&gt;true&lt;/FirstRun&gt;<br />
  &lt;OriginalAirDate&gt;2015-10-05T04:00:00.0000000&lt;/OriginalAirDate&gt;<br />
  &lt;Quality&gt;HDTV&lt;/Quality&gt;<br />
  &lt;Genres&gt;<br />
    &lt;Genre&gt;News&lt;/Genre&gt;<br />
  &lt;/Genres&gt;<br />
  &lt;MD5&gt;MVnlNLHZB7UuWmhEFLvjpQ&lt;/MD5&gt;<br />
  &lt;UniqueID&gt;SH022793520000&lt;/UniqueID&gt;<br />
&lt;/Event&gt;</code></div></div><br />
Martin]]></description>
			<content:encoded><![CDATA[I am trying to schedule a manual recording for a show in Kodi.  Is there a way using the API to keep it manual if I provide a name?  In this case my 2hr recording is being truncated to one hour.<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>2023-11-08 18:37:37.972 [DEBUG][221]    Got request [127.0.0.1]: /service (recording.save)<br />
2023-11-08 18:37:37.972 [DEBUG][221]    method=recording.save<br />
2023-11-08 18:37:37.973 [DEBUG][221]    parameters:<br />
2023-11-08 18:37:37.973 [DEBUG][221]      method: recording.save<br />
2023-11-08 18:37:37.973 [DEBUG][221]      name: CBC Ottawa News<br />
2023-11-08 18:37:37.973 [DEBUG][221]      recording_id: 0<br />
2023-11-08 18:37:37.973 [DEBUG][221]      channel: 7388<br />
2023-11-08 18:37:37.973 [DEBUG][221]      time_t: 1699484340<br />
2023-11-08 18:37:37.973 [DEBUG][221]      duration: 7260<br />
2023-11-08 18:37:37.973 [DEBUG][221]      pre_padding: 0<br />
2023-11-08 18:37:37.973 [DEBUG][221]      post_padding: 0<br />
2023-11-08 18:37:37.973 [DEBUG][221]      directory_id: Default<br />
2023-11-08 18:37:37.973 [DEBUG][221]      sid: 2da1af8edcdb4e2cb84aa381e888bf22<br />
2023-11-08 18:37:37.974 [DEBUG][221]      client_ip: 127.0.0.1<br />
2023-11-08 18:37:37.974 [DEBUG][221]      user_agent: Kodi/21.0-BETA1 (Windows NT 10.0.22631.2506; W2023-11-08 18:37:37.974 [DEBUG][221]      host_callback: ...<br />
2023-11-08 18:37:37.974 [DEBUG][221]    Schedule Recording from EPGEvent...<br />
2023-11-08 18:37:37.975 [DEBUG][221]    about to record:<br />
&lt;Event&gt;<br />
  &lt;OID&gt;2301140&lt;/OID&gt;<br />
  &lt;Title&gt;CBC Ottawa News&lt;/Title&gt;<br />
  &lt;SubTitle&gt;&lt;/SubTitle&gt;<br />
  &lt;Description&gt;Coverage of the top local news.&lt;/Description&gt;<br />
  &lt;ChannelOID&gt;7388&lt;/ChannelOID&gt;<br />
  &lt;StartTime&gt;2023-11-08T22:59:00.0000000Z&lt;/StartTime&gt;<br />
  &lt;EndTime&gt;2023-11-09T00:00:00.0000000Z&lt;/EndTime&gt;<br />
  &lt;FirstRun&gt;true&lt;/FirstRun&gt;<br />
  &lt;OriginalAirDate&gt;2015-10-05T04:00:00.0000000&lt;/OriginalAirDate&gt;<br />
  &lt;Quality&gt;HDTV&lt;/Quality&gt;<br />
  &lt;Genres&gt;<br />
    &lt;Genre&gt;News&lt;/Genre&gt;<br />
  &lt;/Genres&gt;<br />
  &lt;MD5&gt;MVnlNLHZB7UuWmhEFLvjpQ&lt;/MD5&gt;<br />
  &lt;UniqueID&gt;SH022793520000&lt;/UniqueID&gt;<br />
&lt;/Event&gt;</code></div></div><br />
Martin]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[API channel.stream.start]]></title>
			<link>https://forums.nextpvr.com/showthread.php?tid=64756</link>
			<pubDate>Sun, 07 May 2023 19:31:33 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forums.nextpvr.com/member.php?action=profile&uid=5939">mvallevand</a>]]></dc:creator>
			<guid isPermaLink="false">https://forums.nextpvr.com/showthread.php?tid=64756</guid>
			<description><![CDATA[Sub after channel.stream.start either fails or has a client based-timeout should the client be issuing a channel.stream.stop in either or both cases?<br />
<br />
Martin]]></description>
			<content:encoded><![CDATA[Sub after channel.stream.start either fails or has a client based-timeout should the client be issuing a channel.stream.stop in either or both cases?<br />
<br />
Martin]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[FM tuner support in NextPVR?]]></title>
			<link>https://forums.nextpvr.com/showthread.php?tid=64363</link>
			<pubDate>Wed, 23 Nov 2022 06:43:42 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forums.nextpvr.com/member.php?action=profile&uid=27598">Goongyae</a>]]></dc:creator>
			<guid isPermaLink="false">https://forums.nextpvr.com/showthread.php?tid=64363</guid>
			<description><![CDATA[Does any version of NextPVR support FM tuners?<br />
<br />
I am using a WinTV-1800 PCi-E x1 card with an FM tuner on Windows 10, but I use Ubuntu also.<br />
<br />
I tried versions of NextPVR, including the old 4.2.5 version, and it doesn't seem to support the FM tuner.<br />
<br />
At least some versions of WinTV software and also the VLC media player (using DirectShow) support the FM tuner.]]></description>
			<content:encoded><![CDATA[Does any version of NextPVR support FM tuners?<br />
<br />
I am using a WinTV-1800 PCi-E x1 card with an FM tuner on Windows 10, but I use Ubuntu also.<br />
<br />
I tried versions of NextPVR, including the old 4.2.5 version, and it doesn't seem to support the FM tuner.<br />
<br />
At least some versions of WinTV software and also the VLC media player (using DirectShow) support the FM tuner.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[IPTV like stream from Sound Card input - FM Radio Project]]></title>
			<link>https://forums.nextpvr.com/showthread.php?tid=64358</link>
			<pubDate>Sun, 20 Nov 2022 14:50:03 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forums.nextpvr.com/member.php?action=profile&uid=8983">NumberFive</a>]]></dc:creator>
			<guid isPermaLink="false">https://forums.nextpvr.com/showthread.php?tid=64358</guid>
			<description><![CDATA[Hello,<br />
<br />
I'm wondering if anyone can offer a bit of guidance on this one. I am working on a project to make an FM radio tuner input for NextPVR, but in an effort to keep it simple I'm intending to make it look like an IPTV device. Maybe best if I describe the idea first.<br />
<br />
What I'm trying to achieve is something similar to NextPVR's own method of <a href="http://nextpvr:8866/live?channel=1" target="_blank" rel="noopener" class="mycode_url">http://nextpvr:8866/live?channel=1</a> , such that a channel (frequency) can be requested, and the response is an MPEG-TS stream.  I believe that NextPVR is using VLC to create the stream?<br />
<br />
I am using a Raspberry Pi with an FM radio tuner IC attached to it (Si4703). The R Pi will listen for http requests formatted in such a way that the URL requested contains the frequency the radio IC should tune to. I have this part largely working as expected. For example, tuning to <a href="http://radio-pi:80/freq=878" target="_blank" rel="noopener" class="mycode_url">http://radio-pi:80/freq=878</a> tunes to 87.8 MHz.<br />
<br />
The output of the FM radio IC is line level analogue audio, and I am feeding this into a USB soundcard. I can run FFMPEG to capture this and create an MPEG-TS stream, and listen to this using VLC on another computer.<br />
<br />
I'm wondering, can anyone give me guidance on how to respond to the http request with the MPEG-TS stream? At the moment, the URL request just sends back a very basic HTML page. I am familiar enough with starting another program from Python, but how do I redirect the output of FFMPEG back to the client making the tuning request?<br />
<br />
I'm programming in Python.  I'm happy to switch to VLC on the server to create the MPEG-TS steam (or any other tool) should there be an easier way to crack this nut! <br />
<br />
Thank you <img src="https://forums.nextpvr.com/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" />]]></description>
			<content:encoded><![CDATA[Hello,<br />
<br />
I'm wondering if anyone can offer a bit of guidance on this one. I am working on a project to make an FM radio tuner input for NextPVR, but in an effort to keep it simple I'm intending to make it look like an IPTV device. Maybe best if I describe the idea first.<br />
<br />
What I'm trying to achieve is something similar to NextPVR's own method of <a href="http://nextpvr:8866/live?channel=1" target="_blank" rel="noopener" class="mycode_url">http://nextpvr:8866/live?channel=1</a> , such that a channel (frequency) can be requested, and the response is an MPEG-TS stream.  I believe that NextPVR is using VLC to create the stream?<br />
<br />
I am using a Raspberry Pi with an FM radio tuner IC attached to it (Si4703). The R Pi will listen for http requests formatted in such a way that the URL requested contains the frequency the radio IC should tune to. I have this part largely working as expected. For example, tuning to <a href="http://radio-pi:80/freq=878" target="_blank" rel="noopener" class="mycode_url">http://radio-pi:80/freq=878</a> tunes to 87.8 MHz.<br />
<br />
The output of the FM radio IC is line level analogue audio, and I am feeding this into a USB soundcard. I can run FFMPEG to capture this and create an MPEG-TS stream, and listen to this using VLC on another computer.<br />
<br />
I'm wondering, can anyone give me guidance on how to respond to the http request with the MPEG-TS stream? At the moment, the URL request just sends back a very basic HTML page. I am familiar enough with starting another program from Python, but how do I redirect the output of FFMPEG back to the client making the tuning request?<br />
<br />
I'm programming in Python.  I'm happy to switch to VLC on the server to create the MPEG-TS steam (or any other tool) should there be an easier way to crack this nut! <br />
<br />
Thank you <img src="https://forums.nextpvr.com/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[PIP plugin for Kodi]]></title>
			<link>https://forums.nextpvr.com/showthread.php?tid=64239</link>
			<pubDate>Sun, 16 Oct 2022 05:01:16 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forums.nextpvr.com/member.php?action=profile&uid=4531">sgilani</a>]]></dc:creator>
			<guid isPermaLink="false">https://forums.nextpvr.com/showthread.php?tid=64239</guid>
			<description><![CDATA[I came across this Kodi addon for PIP mode:<br />
<br />
<a href="https://github.com/mltobi/kodi-pip-addon" target="_blank" rel="noopener" class="mycode_url">https://github.com/mltobi/kodi-pip-addon</a><br />
<br />
Looks like it's designed for tvheadend as the backend, but it has a creative approach that we may be able to adapt for NextPVR.]]></description>
			<content:encoded><![CDATA[I came across this Kodi addon for PIP mode:<br />
<br />
<a href="https://github.com/mltobi/kodi-pip-addon" target="_blank" rel="noopener" class="mycode_url">https://github.com/mltobi/kodi-pip-addon</a><br />
<br />
Looks like it's designed for tvheadend as the backend, but it has a creative approach that we may be able to adapt for NextPVR.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[ScheduleHelperFactory]]></title>
			<link>https://forums.nextpvr.com/showthread.php?tid=63501</link>
			<pubDate>Thu, 13 Jan 2022 19:55:03 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forums.nextpvr.com/member.php?action=profile&uid=5939">mvallevand</a>]]></dc:creator>
			<guid isPermaLink="false">https://forums.nextpvr.com/showthread.php?tid=63501</guid>
			<description><![CDATA[Is ScheduleHelperFactory.GetScheduleHelper().ScheduleRecording(e, RecordingQuality.QUALITY_DEFAULT); supposed to respect the duplicate flag or is that in program control?<br />
<br />
Martin]]></description>
			<content:encoded><![CDATA[Is ScheduleHelperFactory.GetScheduleHelper().ScheduleRecording(e, RecordingQuality.QUALITY_DEFAULT); supposed to respect the duplicate flag or is that in program control?<br />
<br />
Martin]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Recorded movies]]></title>
			<link>https://forums.nextpvr.com/showthread.php?tid=63419</link>
			<pubDate>Tue, 28 Dec 2021 22:30:21 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forums.nextpvr.com/member.php?action=profile&uid=5939">mvallevand</a>]]></dc:creator>
			<guid isPermaLink="false">https://forums.nextpvr.com/showthread.php?tid=63419</guid>
			<description><![CDATA[How do NextPVR web and UI clients determine that the Original Air Date year gets appended to the title (assuming not from Schedules Direct)<br />
<br />
Martin]]></description>
			<content:encoded><![CDATA[How do NextPVR web and UI clients determine that the Original Air Date year gets appended to the title (assuming not from Schedules Direct)<br />
<br />
Martin]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Video streaming URL and parameters?]]></title>
			<link>https://forums.nextpvr.com/showthread.php?tid=63178</link>
			<pubDate>Fri, 22 Oct 2021 18:48:17 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forums.nextpvr.com/member.php?action=profile&uid=13622">cncb</a>]]></dc:creator>
			<guid isPermaLink="false">https://forums.nextpvr.com/showthread.php?tid=63178</guid>
			<description><![CDATA[Can someone point me to the API video streaming URL for both recordings and live tv as well as the possible parameters (transcoding, direct, etc.)?  Thank you.]]></description>
			<content:encoded><![CDATA[Can someone point me to the API video streaming URL for both recordings and live tv as well as the possible parameters (transcoding, direct, etc.)?  Thank you.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Disable stdout]]></title>
			<link>https://forums.nextpvr.com/showthread.php?tid=62948</link>
			<pubDate>Sun, 29 Aug 2021 16:01:29 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forums.nextpvr.com/member.php?action=profile&uid=5939">mvallevand</a>]]></dc:creator>
			<guid isPermaLink="false">https://forums.nextpvr.com/showthread.php?tid=62948</guid>
			<description><![CDATA[Can NShared/NUtility be configured not to output to stdout without doing it globally?  I am working on a C# Extra that talks to NextPVR and I want to avoid things like<br />
<br />
<br />
NEXTPVR_INSTALLDIR C:\Program Files\NextPVR\<br />
NEXTPVR_DATADIR C:\Program Files\NextPVR\data\<br />
NEXTPVR_DATADIR_USERDATA C:\Users\Public\NPVR-data\<br />
<br />
and other unknown/unwanted strings from going to stdout.<br />
<br />
Martin]]></description>
			<content:encoded><![CDATA[Can NShared/NUtility be configured not to output to stdout without doing it globally?  I am working on a C# Extra that talks to NextPVR and I want to avoid things like<br />
<br />
<br />
NEXTPVR_INSTALLDIR C:\Program Files\NextPVR\<br />
NEXTPVR_DATADIR C:\Program Files\NextPVR\data\<br />
NEXTPVR_DATADIR_USERDATA C:\Users\Public\NPVR-data\<br />
<br />
and other unknown/unwanted strings from going to stdout.<br />
<br />
Martin]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Invalid session?]]></title>
			<link>https://forums.nextpvr.com/showthread.php?tid=62827</link>
			<pubDate>Sat, 24 Jul 2021 22:14:50 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forums.nextpvr.com/member.php?action=profile&uid=24336">mandai</a>]]></dc:creator>
			<guid isPermaLink="false">https://forums.nextpvr.com/showthread.php?tid=62827</guid>
			<description><![CDATA[Hi I am trying to get the EPG data from this URL<br />
<a href="http://127.0.0.1:8866/services/service?method=channel.listings.current" target="_blank" rel="noopener" class="mycode_url">http://127.0.0.1:8866/services/service?m...gs.current</a><br />
<br />
but it gives this response<br />
&lt;?xml version="1.0" encoding="utf-8" ?&gt;<br />
&lt;rsp stat="fail"&gt;<br />
  &lt;err code="8" msg="Invalid Session" /&gt;<br />
&lt;/rsp&gt;<br />
<br />
<br />
This has only happened after I updated to version 5.1.3.210711. Is there any way to fix this?<br />
I have ticked the options for Allow remote access/Allow unauthenticated access (this is only accessed locally).]]></description>
			<content:encoded><![CDATA[Hi I am trying to get the EPG data from this URL<br />
<a href="http://127.0.0.1:8866/services/service?method=channel.listings.current" target="_blank" rel="noopener" class="mycode_url">http://127.0.0.1:8866/services/service?m...gs.current</a><br />
<br />
but it gives this response<br />
&lt;?xml version="1.0" encoding="utf-8" ?&gt;<br />
&lt;rsp stat="fail"&gt;<br />
  &lt;err code="8" msg="Invalid Session" /&gt;<br />
&lt;/rsp&gt;<br />
<br />
<br />
This has only happened after I updated to version 5.1.3.210711. Is there any way to fix this?<br />
I have ticked the options for Allow remote access/Allow unauthenticated access (this is only accessed locally).]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[StoreMetaData]]></title>
			<link>https://forums.nextpvr.com/showthread.php?tid=62792</link>
			<pubDate>Sat, 10 Jul 2021 15:40:48 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forums.nextpvr.com/member.php?action=profile&uid=5939">mvallevand</a>]]></dc:creator>
			<guid isPermaLink="false">https://forums.nextpvr.com/showthread.php?tid=62792</guid>
			<description><![CDATA[Is there a technical reason the RecordingsService.StoreMetaData is not available via RecordingsServiceProxy?  I'd like to use in in my NextImport to dump the xml file so I can edit it and then update the event_details field.  I prefer using API functions over hardcoding database and xml writing.<br />
<br />
The reason I want to do this is the season finale of Clarice didn't include the S/E information with the metadata.  I'd like to use the XML file as the input for an update, editing that field in the database is cumbersome.  <br />
<br />
Martin]]></description>
			<content:encoded><![CDATA[Is there a technical reason the RecordingsService.StoreMetaData is not available via RecordingsServiceProxy?  I'd like to use in in my NextImport to dump the xml file so I can edit it and then update the event_details field.  I prefer using API functions over hardcoding database and xml writing.<br />
<br />
The reason I want to do this is the season finale of Clarice didn't include the S/E information with the metadata.  I'd like to use the XML file as the input for an update, editing that field in the database is cumbersome.  <br />
<br />
Martin]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Lease Renewal]]></title>
			<link>https://forums.nextpvr.com/showthread.php?tid=62557</link>
			<pubDate>Thu, 22 Apr 2021 16:00:59 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://forums.nextpvr.com/member.php?action=profile&uid=17533">jcole998</a>]]></dc:creator>
			<guid isPermaLink="false">https://forums.nextpvr.com/showthread.php?tid=62557</guid>
			<description><![CDATA[I am working with live TV and would like to know how the lease renewal mechanism works. In particular, does this "handshake" involve the device providing live TV? What messages, if any, are exchanged between the NextPVR server and the device?<br />
<br />
Tried searching with Bing but got nothing relevant.<br />
<br />
Thanks]]></description>
			<content:encoded><![CDATA[I am working with live TV and would like to know how the lease renewal mechanism works. In particular, does this "handshake" involve the device providing live TV? What messages, if any, are exchanged between the NextPVR server and the device?<br />
<br />
Tried searching with Bing but got nothing relevant.<br />
<br />
Thanks]]></content:encoded>
		</item>
	</channel>
</rss>