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,049
» Latest member: joe_d1
» Forum threads: 64,991
» Forum posts: 595,419

Full Statistics

Online Users
There are currently 925 online users.
» 4 Member(s) | 917 Guest(s)
Applebot, Bing, Google, Yandex, jimil, joe_d1, mvallevand, pkscout

Latest Threads
Comskip for the web clien...
Forum: NextPVR Support
Last Post: mvallevand
8 minutes ago
» Replies: 4
» Views: 21
Any chance to find a V6 d...
Forum: Linux
Last Post: mvallevand
28 minutes ago
» Replies: 5
» Views: 30
Recording interrupted
Forum: NextPVR Support
Last Post: mvallevand
5 hours ago
» Replies: 1
» Views: 19
NextEnd v5 trial release
Forum: Add-ons (3rd party plugins, utilities and skins)
Last Post: BrettB
6 hours ago
» Replies: 442
» Views: 91,262
Aspect ratio
Forum: Kodi / XBMC
Last Post: mvallevand
8 hours ago
» Replies: 1
» Views: 31
No LiveTV or Recording on...
Forum: Windows
Last Post: cher
11 hours ago
» Replies: 2
» Views: 100
EPlusTV
Forum: NextPVR Support
Last Post: hdpvr-doug8796
2025-10-04, 07:14 PM
» Replies: 8
» Views: 194
EPG Problems - 7.0.3.2509...
Forum: Windows
Last Post: mvallevand
2025-10-04, 04:35 PM
» Replies: 6
» Views: 196
Streaming Failed (transco...
Forum: Windows
Last Post: mvallevand
2025-10-04, 12:42 PM
» Replies: 5
» Views: 136
Error when attempting to ...
Forum: Kodi / XBMC
Last Post: Fillimerica
2025-10-03, 04:53 PM
» Replies: 6
» Views: 147

 
  New Playlist EPG
Posted by: AugGuy - 2025-09-21, 06:04 AM - Forum: Windows - Replies (6)

I just added a new playlist for my local FTA channels, i can't get the EPG to update, just making sure I'm doing it properly.

I added this EPG XML file to the guide sources section, should this work?

https://i.mjh.nz/au/Melbourne/epg.xml.gz 

Thanks for any help.

Print this item

  What is this item?
Posted by: Joram - 2025-09-20, 09:51 PM - Forum: Hardware - Replies (2)

Looking for a WMC remote to complete our new NextPVR setup, I purchased this item.

However, I am far from expert in these matters: please forgive my ignorance. Of the five items in the photograph, I know what four of them are and what they do, but... what's the small dongle seen to the left of the remote, above the batteries? It has a 3.5mm connector, apparently intended to plug into the back of the receiver on the right. What is this dongle for?

Thank you.

Print this item

  No EPG data from SAT>IP-Server
Posted by: gilhmauy - 2025-09-20, 03:29 PM - Forum: NextPVR Support - Replies (3)

Hello!

I just installed NextPVR on my Proxmox server as an LXC container. My Kathrein EXIP 418 SatIP server was recognized immediately, and the channel scan was also successful. As a test, I opened a channel from the guide in VLC (as an HTTP stream), and playback worked perfectly as well.

However, I'm having an issue with updating the EPG. In the guide, I only see "(no listings)", and when I manually try to update the EPG via Settings -> About -> Update EPG, I only get the message:
"EPG Update complete. [0 inserted, 0 updated, 0 skipped]".
I've attached screenshots and log files for reference.

I'm really impressed with how easy everything is to set up and how quickly the streams start. I was hoping to replace my current setup and switch to using the Jellyfin plugin with NextPVR – so my highest compliments for this project! I really hope there's a solution for my issue, and I would be grateful for any help!

Best regards



Attached Files
.zip   logs-20250920-1727.zip (Size: 372.01 KB / Downloads: 2)
.png   Bildschirmfoto vom 2025-09-20 17-18-57.png (Size: 20.26 KB / Downloads: 26)
.png   Bildschirmfoto vom 2025-09-20 17-19-38.png (Size: 108.18 KB / Downloads: 26)
.png   Bildschirmfoto vom 2025-09-20 17-20-23.png (Size: 80.12 KB / Downloads: 26)
.png   Bildschirmfoto vom 2025-09-20 17-19-57.png (Size: 126.09 KB / Downloads: 26)
Print this item

  Show pre-post padding in scheduler list
Posted by: ineffablebob - 2025-09-20, 12:30 PM - Forum: Wishlist - No Replies

If you use the pre-pad and post-pad options, then the times in the scheduler list aren't entirely accurate. The list shows the start and end time of the program, but the recording will actually run a bit longer due to the padding. It would be useful to have an option to show the amount of padding on the list, so you don't have to click on each entry if you want to see if it's got padding options. I went ahead and added this to my own installation, by modifying recordings-grid.js:

Code:
--- recordings-grid.js.bak      2025-09-20 08:19:08.974010622 -0400
+++ recordings-grid.js  2025-09-20 08:19:08.974010622 -0400
@@ -358,7 +358,16 @@
                     var startTime = new Date(recording.startTime * 1000);
                     var duration = recording.duration;
                     var endTime = new Date(startTime.getTime() + 1000 * duration);
-                    recording.period = startTime.toLocaleDateString() + ' ' + startTime.toLocaleTimeString() + ' - ' + endTime.toLocaleTimeString();
+                    var prePad = '';
+                    var postPad = '';
+                    if (recording.prePadding != 0) {
+                        prePad = '(' + recording.prePadding + ') ';
+                    }
+                    if (recording.postPadding != 0) {
+                        postPad = ' (' + recording.postPadding + ')';
+                    }
+                    recording.period = prePad + startTime.toLocaleDateString() + ' ' + startTime.toLocaleTimeString() + ' - ' + endTime.toLocaleTimeString() + postPad;
+
                     recording.readableTime = startTime.toLocaleDateString() + ' ' + startTime.toLocaleTimeString();

                     if (recording.subtitle != "") {

That patch makes the time portion of the upcoming recordings list look like this (when the schedule has 6 mins pre and 8 mins post): [REWIND] (6) 9/20/2025 8:30:00 AM - 9:00:00 AM (8) 

Of course, it would be nicer if it were an option that could be turned on and off - something for a future release!

Print this item

  There is no playthrough on the NextPVR server, nor is there any playback when connect
Posted by: kfmf - 2025-09-20, 11:15 AM - Forum: Linux - Replies (2)

Hello,
For the past few days, my NextPVR server has been acting up.
I use an LXC container on a Proxmox host.
My media data is stored on a NAS in my private network.
I am now experiencing the following error/problem:
The recording works, but when I try to play the movie in the browser, it fails to start.
If I play the same movie on my Jellyfin server (on the same network and connected to the same NAS), it works.
I think the problem might be with the NextPVR server, but I can't find the root cause.
Please help me! Sad
Thanks,
Kfmf

Print this item

  SkipForwardSeconds in V7
Posted by: nbv2020 - 2025-09-19, 09:44 PM - Forum: NextPVR Support - Replies (5)

I’m a new user of NextPvr V7.  After working on some instability issues for few days (like frequent crashes), it seems to be working after updating it with the NextPVRUI.dll.  Now I need help setting up the skipforward 60 seconds. By default, it seems to only forward 15 seconds.  Most commercial breaks in the USA are 4 minutes. Obviously it would take 4 remote control clicks vs 16 clicks to skip a commercial break.  I modified the config.xml skipforward to 60 but no help. All renderers and decodes are set to default.  Thanks for your help
<Playback>
<VolumeControl>internal</VolumeControl>
<VolumeLevel>100</VolumeLevel>
<VolumeMuted>false</VolumeMuted>
<SkipForwardSeconds>60</SkipForwardSeconds>
<SkipBackSeconds>60</SkipBackSeconds>
<SkipFFSeconds>60</SkipFFSeconds>
<SkipRWSeconds>60</SkipRWSeconds>
<FFRWBehaviour>Fast Play</FFRWBehaviour>
<LeftRightBehaviour>Long Skip</LeftRightBehaviour>
<FastPlayStepSize>1.2</FastPlayStepSize>
<FastPlayStepFrequencyMS>100</FastPlayStepFrequencyMS>
<PrePlayDelay>500</PrePlayDelay>
<DVDDrive>AUTO</DVDDrive>
<DaemonToolsExe>C:\Program Files (x86)\DAEMON Tools Lite\DTLite.exe</DaemonToolsExe>
<DaemonToolsDrive>I:\</DaemonToolsDrive>
<DaemonToolsDelay>3500</DaemonToolsDelay>
<ActiveSubtitle>none</ActiveSubtitle>
</Playback>

Print this item

  NextPVR v7 Not retaining established SD source on EPG sources page
Posted by: acadng - 2025-09-19, 08:59 PM - Forum: Linux - Replies (12)

Hello NextPVR users & "old heads!"

After 25 years with a satellite provider "I have seen the light." I am also a new SD account holder and a new user of NextPVR Ver. 7. I have a simple private LAN setup whereas I use a NON-INTERNET connected router to access NextPVR & Kodi via my laptop running Linux Mint Cinnamon 22.1 with a slim down (all apps disabled or unstalled....except for Kore remote app for Kodi Nexus) android Motorola Pla. I am using Hauppauge Dual USB tuner connected to the laptop. This ensures a closed system. This setup works very well. I use my Samsung S25 Ultra cellphone to temporarily activate its hotspot & then using the FireFox browser on laptop to update my SD EPG. After SD EPG is downloaded and channels are populated I deactivate the hotspot & then reconnect laptop's wireless network back to the router. This closed process works well. However, when I "switch" back & forth between the two accesses NextPVR does not retain my SD EPG source link. I can establish it and reassign it to all my local channels while connected to my hotspot...then I turn off hotspot and return my laptop back to the my close LAN....all works until I once again open the browser to access NextPVR via my hotspot thu my laptop...my SD EPG source is no longer listed on the EPG sources page. My SD login info is still shown on the Guide page. I even have re-entered my SD login credentials & selected the button to reload/refresh my SD source. No action occurs. I have closed FIreFox and re-open & even refreshed the browser. I have also tried another browser...same outcome. I tried several uninstalls/re-installs and always made sure I selected "remember me" at NextPVR login. I have also read/reviewed a great source (user manual )for NextPVR (Page Index - sub3/NextPVR GitHub Wiki).  It seems like NextPVR is not retaining OR is there something with SD access that is forcing NextPVR to not retain my selected SD EPG source when switching from my hotspot connection to my closed LAN?

My goal is to have my SD EPG source retained in NextPVR and also assigned to each of my local channels not matter if I switch between my closed LAN or using my cellphone hotspot to update SD EPG or not. Unfortunately, I have to re-assign the SD EPG source to each channel every time I switch accesses.

Any insight/information/workaround/NextPVR configuration file adjustments/ or other would be greatly appreciated!

Print this item

  knewc - Video Resarts and FullscreenRandomPhoto Screen Saver
Posted by: meccano - 2025-09-19, 06:27 PM - Forum: X-NEWA - Replies (3)

I was recently forced to upgrade NextPVR from 6.1.3.230521 to 7.0.2.250621
in order to resolve issues with the Schedules Direct JSON support.
I also upgraded from knewc 2.9.4 to 2.10.1.

Ever since, I appear to have 2 main problems:

1. If I play a file under the Videos menu, it starts ok.  If I interrupt
the video (Last.Week.Tonight) and then attempt to restart it, the restart always hangs.
I have to stop the video hang, play it from the beginning and skip forward
to my desired location which is a big pain.

2. One of my favourite features, the FullscreenRandomPhoto no longer works - <ActiveScreenSaver>FullscreenRandomPhoto</ActiveScreenSaver>.
When the screen saver is initiated, the Kodi error message "No Favourites Found"
appears instead as shown in the attached photo.  knewc stops.
If I press ESC to clear the error message and restart knewc
then the screen saver starts up, but eventually fails again.

Any ideas?  Attached are the NextPVR and Kodi logs. Huh



Attached Files
.zip   pvr@20250918.zip (Size: 1.74 MB / Downloads: 1)
Print this item

Photo VOD not updating
Posted by: vorcry - 2025-09-19, 04:09 PM - Forum: Windows - Replies (6)

I'm trying to update/import the VOD from my provider.  When I update the channels on the device it says there are vod channels, in the update channels says: Done (838 vod) (838 vod)

When I choose the VOD menu item in the browser, it's empty.  Any idea what's causing that?

--Vorcry



Attached Files
.png   Screenshot 2025-09-19 090824.png (Size: 6.1 KB / Downloads: 55)
Print this item

  Webapp default recordings view to "list"
Posted by: ineffablebob - 2025-09-19, 07:26 AM - Forum: NextPVR Support - Replies (4)

Is there a way to set the default view when you click "Recordings" in the webapp to "All Recordings (List)"? I never use the "All Recordings" view and so every time I have to switch the view with the drop-down. I looked in config.xml and there's a setting called "RecordingsList" but I've been unable to find any documentation on whether it is related, and changing it to "list" did nothing.

Print this item

Pages (6400): « Previous 1 2 3 4 5 6 … 6400 Next »
Jump to page 

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