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,183
» Latest member: lendzion
» Forum threads: 65,377
» Forum posts: 602,178

Full Statistics

Online Users
There are currently 1801 online users.
» 1 Member(s) | 1793 Guest(s)
Applebot, Baidu, Bing, DuckDuckGo, Facebook, Google, Yandex, sub

Latest Threads
More than one HDPVR to th...
Forum: Hardware
Last Post: mvallevand
2026-09-05, 04:51 PM
» Replies: 7
» Views: 92
New iOS/tvOS/macOS client...
Forum: NextPVR iOS and AppleTV Clients
Last Post: drvolks
2026-09-05, 01:00 PM
» Replies: 43
» Views: 6,292
actors producer director
Forum: Wishlist
Last Post: a1blues
2026-09-04, 09:20 PM
» Replies: 4
» Views: 112
Upcoming NextEnd addon an...
Forum: Add-ons (3rd party plugins, utilities and skins)
Last Post: mvallevand
2026-09-04, 01:00 AM
» Replies: 1
» Views: 150
HDHomeRun can't find tune...
Forum: Linux
Last Post: mvallevand
2026-09-01, 05:58 PM
» Replies: 1
» Views: 148
Can't upgrade from 6.1.1....
Forum: NextPVR Support
Last Post: blobbyguts
2026-08-31, 10:56 AM
» Replies: 1
» Views: 111
NextEnd and NFL Preseason
Forum: Windows
Last Post: mvallevand
2026-08-30, 03:13 PM
» Replies: 1
» Views: 157
New version problem with ...
Forum: Windows
Last Post: Swami
2026-08-30, 12:23 AM
» Replies: 47
» Views: 3,884
DVB-T scanning issue - fo...
Forum: Docker amd64
Last Post: mvallevand
2026-08-28, 08:36 AM
» Replies: 1
» Views: 204
Channels not detected in ...
Forum: Windows
Last Post: mvallevand
2026-08-28, 03:57 AM
» Replies: 5
» Views: 3,468

 
  How to force a channel change between back-to-back recordings
Posted by: rvarg - 2020-11-10, 05:49 PM - Forum: Windows - Replies (3)

I have only been using NextPVR 5 for a couple of weeks now, and I have a newbie question.  I have noticed that when there are 2 back-to-back recordings on the same channel, the channel change script does not get called at the start of the 2nd recording.  Is there a way that I can force the channel change script to run even when there is no channel change?  I am trying to handle the case where someone might inadvertently change the STB channel externally with the remote.  I considered using the PreRecording.bat script to blast the upcoming channel number, but since that script gets called 2 minutes prior to the start of the 2nd show, it would interrupt the end of the 1st recording in the case of a real channel change.

Print this item

  HDPVR Rocket - add channel
Posted by: bohosh - 2020-11-10, 05:49 PM - Forum: Windows - Replies (17)

Hello again,
as I wrote in other thread I face problems with add channels to rocket device.
I follow these steps:
https://forums.nextpvr.com/showthread.php?tid=59913

But I can't get this window:

29. This will bring up the "Import Channels" screen.  Click the top box to check/uncheck all.

    Click individual boxes to check/uncheck that channel.

What I miss?
I've add epg.xml source.
Also HDMI/HDMI audio, blaster path (C:\Program Files\NextPVR\HaupBlast.exe)
and for channel I've retyped {channel}.
I get "save" button active, but if I use it - again get this:
This device currently has no channels, hit the Scan or Import buttons to add channels to this device.

BR

Print this item

  Web App Hover
Posted by: jcole998 - 2020-11-10, 02:10 PM - Forum: Wishlist - No Replies

I'd like to suggest that the web app pop up description and episode data after the pointer has hovered over a program listing for a few(2?) seconds.

Saves two clicks!

Thanks.

Print this item

  Failure of playback
Posted by: poppy10 - 2020-11-10, 01:54 PM - Forum: Windows - Replies (1)

Hello

I hope that somebody can help me with the above problem


I have recently had to reset up my computer due to a disc problem

I can at the moment  record programs but am unable to have them played back.  I get at message which states that I need to have Mpeg 1 set up in the

decoding area. I have tried to alter this area but the Mpeg1 area reverts each time back  Angel to disabled

I am at the moment watching these Recorded TV programs in the Windows 10 area


Thank you    Tom

Print this item

  bulk comskip processing script
Posted by: baj1 - 2020-11-10, 08:11 AM - Forum: Linux - Replies (7)

I made some headway here and thought I'd share.  I have a pretty decent volume of saved recordings, many of which have old comskip files from many versions ago.  I don't know if I'm saying this right, but as I understand it they trip up Kodi/knewc due to the edl_skip_field setting.  It defaults to 0=cut and you will not be able to play portions of the video marked as commercials.  Setting it to a value = 3 will allow playback of the commercial marked portions. 

Anywho, my solution was to re-run comskip on all of these recordings so I started a bash script to handle it in bulk in Linux.  I'm far from a bash guru but was able to piece together some code with a lot of help from other forums and Martin's PostProcessing.sh example.  Here it is:



Code:
#! /bin/bash # comskip_subfolders.sh # This script will bulk-process TS files in sub-folders.  Execute in your root Video folder and it will run comskip on all TS files in all the "show" subfolders # nice eases CPU use, range is -20 (fastest/highest CPU usage) to 19 (slowest/least CPU usage), negative values require sudo for d in */; do     echo "Processing Folder $d" cd "$d" for file in *.ts do   echo "Processing file " $file   nice -n 19 comskip --ini=/home/<username>/Comskip/comskip.ini "$file" > /dev/null done cd .. done

Just paste the code into your favorite text editor and change <username> to your user, or modify the path completely if you installed Comskip elsewhere.  Save the contents to your ~/bin folder and don't forget to chmod +x to make it executable.  If you haven't already you might want to make sure you've set edl_skip_field = 3 in your comskip.ini, or add that line to the end of the ini file if needed.

Change the nice value if you like.  I have a new server with a 6-core 3.6GHz CPU and I was running two instances of the script (in two separate folders) with nice @ "2" and each instance was showing about 240% utilization in System Monitor.  It was processing 1 hour shows in around 100 seconds, although this did vary with the particular show it was processing.

Disclaimer!  As stated I am FAR from a bash guru, use at your own risk!  It worked on my single-depth subfolder structure of my Video (recordings) folder.

I hope someone finds this useful.  This is v1.0, so I'm open to feedback/improvements.

Cheers,
-Brad

Print this item

  Recording service not running at recording time
Posted by: baj1 - 2020-11-10, 01:33 AM - Forum: Linux - Replies (22)

I just noticed I had 3 recordings fail last night (Sunday) at 7:30pm and 8pm on two different channels with the error "Recording service not running at recording time."  Those were the only 3 shows set to record during that time window.  We have recording from 7pm and 8:30pm, so it was working before and after.  I was not doing any server maintenance during that time, in fact I'm pretty sure I was watching football recorded earlier in the day on the server PC.

The same programs recorded fine on Friday and before, but it looks like I had some others fail on Friday with this same error.  No failures with this error prior to that that I could find.

My logs only go back to 10am this morning (Monday), so that doesn't help.  Anywhere else I can look for info?

I'll keep a closer eye on recording status and post logs if it happens again.

Thanks,
-Brad

Print this item

  Viewing on another local PC
Posted by: arrbee99 - 2020-11-09, 12:55 AM - Forum: Windows - Replies (11)

Have never actually tried this before, but I guess I can have NextPVR on the main PC and watch on a local (as in 10 foot away) laptop ?

I tried typing in hopefully the correct url on the laptop and it comes up with the same login screen as on the main PC, but typing the usual password it says Login Failed.
Also, under the Admin > Settings > Remote Access, it says 'If you're intending to use NextPVR over Internet, you need to tick the checkbox below. It'll only allow you to login remotely if you have changed the username/password and pin from the default values. This is required to help keep your machine secure.' So do I need to change the default username/password seeing as I'm using it locally, not via the Internet ?
(the box is ticked)

Print this item

  Fresh install, desktop client has no OSD/controls
Posted by: zer - 2020-11-08, 10:24 PM - Forum: Windows - Replies (7)

Setting up NextPVR on new hardware, all's working well so far apart from the desktop client which itself is fine until watching a recording or live TV where I don't get any on screen display (play bar and controls, etc).

Basic keyboard controls work (left/right arrows, space bar), BUT stop working after trying something like Ctrl-X or Ctrl-B.  I can use the mouse to get the right-click menu up and everything within that seems to work.  I have to press Escape to get back to the menu.

Version installed is: Version: 5.0.9.201026  

Any ideas?



Attached Files
.zip   logs-20201108-2213.zip (Size: 1.65 MB / Downloads: 6)
Print this item

  NextPVR only using one tuner
Posted by: bac80 - 2020-11-08, 12:41 PM - Forum: Windows - Replies (5)

Just got NextPVR working tonight with Kodii and so far it has resolved a lot of issues I was having using WMC and Server WMC. I have one big issue though, which might be something simple to resolve, but I can't work it out. I have 2 x HD HomeRun devices, 4 tuners in Total, but it seems I can only use one tuner. It knows about all 4 of them, I can see them all under devices, but if I start recording a channel on my Kodi box, I cant change the channel, when I select another channel nothing happens. If I try to load NextPVR Web interface I can only play the channel I'm recording or already watching on Kodi. If I select another channel I get the error "failed to start requested stream" down the bottom.

When I first set everything up I had 4 duplicates of all the channels so I went in and hit "merge" under settings - devices - advanced tools and it seems to have fixed the guide issue but only allows me to use the one tuner. I'm not sure if that was the right thing to do or not so if someone can help it would be much appreciated.

Print this item

  Strange recording folder name
Posted by: VCR58 - 2020-11-07, 08:25 PM - Forum: Linux - Replies (16)

I am recording a movie called "Star Trek IV: The Voyage Home" and when I browsed for the folder I found the recording in a folder called "SY3JLR~2".  I have no idea how this happened. 

I started the same movie using my Windows Nextpvr server and it created the correct folder name. Any Ideas?

Thanks.



Attached Files
.zip   logs-20201107-1406.zip (Size: 391.1 KB / Downloads: 3)
Print this item

Pages (6435): « Previous 1 … 412 413 414 415 416 … 6435 Next »
Jump to page 

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