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,188
» Latest member: dromanas
» Forum threads: 65,378
» Forum posts: 602,184

Full Statistics

Online Users
There are currently 1073 online users.
» 2 Member(s) | 1064 Guest(s)
Applebot, Baidu, Bing, DuckDuckGo, Facebook, Google, Yandex, mvallevand, something_fishy

Latest Threads
Closed captioning in NPVR
Forum: Windows
Last Post: mvallevand
Yesterday, 12:25 PM
» Replies: 32
» Views: 3,663
More than one HDPVR to th...
Forum: Hardware
Last Post: mvallevand
2026-09-05, 04:51 PM
» Replies: 7
» Views: 234
New iOS/tvOS/macOS client...
Forum: NextPVR iOS and AppleTV Clients
Last Post: drvolks
2026-09-05, 01:00 PM
» Replies: 43
» Views: 6,370
actors producer director
Forum: Wishlist
Last Post: a1blues
2026-09-04, 09:20 PM
» Replies: 4
» Views: 176
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: 196
HDHomeRun can't find tune...
Forum: Linux
Last Post: mvallevand
2026-09-01, 05:58 PM
» Replies: 1
» Views: 191
Can't upgrade from 6.1.1....
Forum: NextPVR Support
Last Post: blobbyguts
2026-08-31, 10:56 AM
» Replies: 1
» Views: 148
NextEnd and NFL Preseason
Forum: Windows
Last Post: mvallevand
2026-08-30, 03:13 PM
» Replies: 1
» Views: 183
New version problem with ...
Forum: Windows
Last Post: Swami
2026-08-30, 12:23 AM
» Replies: 47
» Views: 3,955
DVB-T scanning issue - fo...
Forum: Docker amd64
Last Post: mvallevand
2026-08-28, 08:36 AM
» Replies: 1
» Views: 225

 
  Windows FM Radio support in v5.
Posted by: mvallevand - 2020-05-01, 06:07 PM - Forum: Developers - Replies (125)

I want to do this in stages so I can post some thing on wiki.  Remember that FM analog radio devices are dead technology vendors haven't produced them since the digital migration so expect some bumps.  Lucky users will find a device with linux support I haven't found one and certainly wouldn't spend money to get one. Streaming and SDR FM are the future and much easier to get working.

Anyway for stage one,  I would like you to run this command and send the output

ffmpeg -list_devices true -f dshow -i dummy

ffmpeg is distributed with NextPVR and is in "C:\Program Files\NextPVR\Other"

Martin

Print this item

  Post Processing v5.03/4
Posted by: jordy1955 - 2020-05-01, 10:17 AM - Forum: Windows - Replies (6)

Hey Guys,

I've been running PostProcessing.bat for years on V4 and never had an issue - at least after I got it doing what I wanted Smile
However, On 5.0.3 and 5.0.4 it seems to only work when it feels like it. I have the batch file rename the .ts file to get rid of the date/Time suffix. and when it works it's perfect, but at the moments it only happens about 30% of the time.

It's to do with the %REC_TITLE% output.

Can you take a look and see if you can work out why it doesn't work all the time. If it works more than once, that should mean that there is nothing wrong with the coding of the file shouldn't it?

Anyway, I await your responses.

Contents of my bat file: Note, the Bold line is where it fails all the time, except for when it doesn't. If it gets past that it finishes ok. The lines in italics append HD or SD to the file for subsequent processing for commercial removal. The extra HD/SD tacked on after the.ts is to prevent the batch file looping and adding numerous _HD or _SD one after the other - they are removed on induction into the commercial removal setup. It works 100% for that part.

@Echo on

GoTo :BEGIN

:BEGIN
SETLOCAL
Set SCRIPTNAME=%0
Set BASEDIR=c:\Users\Public\NPVR-data
Set LOGFILE=%BASEDIR%\Logs\RecordingSucceeded.log
Set ERRORLOG=%BASEDIR%\Logs\ERRORLOG.log
Set FILENAME=%1
Set CH_NUM=%2
Set OID=%3
Set DEV_OID=%4
Set REC_TITLE=%5
Set RecDir=C:\Users\Public\Videos\

Call :LOGMSG Recording complete - filename: %FILENAME%  ChannelNUM: %CH_NUM%  OID: %OID%  DeviceOID: %DEV_OID%  Title: %REC_TITLE%

cd /D %RecDir%
forfiles /S /M *.ts /C "cmd /c ren *.ts %REC_TITLE%.ts"
If ERRORLEVEL 1 call :Error Error Renamimg File: %FILENAME%  Title: %REC_TITLE%
timeout 300
If %CH_NUM%==5 GoTo :RENAMEHD
If %CH_NUM%==7 GoTo :RENAMEHD
If %CH_NUM%==13 GoTo :RENAMEHD
If %CH_NUM%==14 GoTo :RENAMEHD
If %CH_NUM%==27 GoTo :RENAMEHD
If %CH_NUM%==29 GoTo :RENAMEHD
If %CH_NUM%==35 GoTo :RENAMEHD
If %CH_NUM%==46 GoTo :RENAMEHD
GoTo :RENAMESD
--------------------------------------------------------------
:RENAMEHD
forfiles /S /M *.ts /C "cmd /c ren *.ts %REC_TITLE%_HD.ts.HD"

Call :LOGMSG HD Renamimg complete - filename: %FILENAME% - ChNum: %CH_NUM% - Title: %REC_TITLE%
GoTo :EXITJOB

--------------------------------------------------------------
:RENAMESD
forfiles /S /M *.ts /C "cmd /c ren *.ts %REC_TITLE%_SD.mpg.SD"

Call :LOGMSG SD Renamimg complete - filename: %FILENAME% - ChNum: %CH_NUM% - Title: %REC_TITLE%
GoTo :EXITJOB

--------------------------------------------------------------
:LOGMSG
    echo %*
    echo %date:~4% %time% [%SCRIPTNAME%] %* >> %LOGFILE%
    Goto :EOF


--------------------------------------------------------------
:EXITJOB
Exit /b
--------------------------------------------------------------
:Error
echo %*
    echo %date:~4% %time% [%SCRIPTNAME%] %* >> %ERRORLOG%
    Goto :EOF

Print this item

  keyboard shortcuts
Posted by: mame - 2020-05-01, 09:54 AM - Forum: Windows - Replies (2)

Somebody knows all available shortcuts (CTRL-K, PF1 and so on)?
Thanks.

Print this item

  System.Net.WebException: The remote server returned an error: (401) Unauthorized.
Posted by: benj180 - 2020-05-01, 09:46 AM - Forum: NextPVR Support - Replies (6)

Hey,

First post Smile

I have been getting the following issue when trying record GMB in a morning resulting in a failed recording. Looking at the logs i see the following repeated over and over:

Unexpected error in HTTP input source: System.Net.WebException: The remote server returned an error: (401) Unauthorized.

Logs attached. Would be grateful for some assistance Wink

Ben



Attached Files
.zip   logs-20200501-1005.zip (Size: 373.68 KB / Downloads: 3)
Print this item

  EPG still loses Data over night
Posted by: Escape7 - 2020-05-01, 08:30 AM - Forum: NextPVR Support - Replies (25)

Hello,

like i wrote in this thread: https://forums.nextpvr.com/showthread.php?tid=60750

The EPG still loses Data over night. Also a manuell update in this situation fails, i need to reboot the PC, to get the EPG update working again.

Strange is, that already downloaded information is also lost. 

Version: 5.0.4.200428

Attached is a current screenshot, and the Logfiles.



Attached Files Thumbnail(s)
   

.zip   logs-20200501-1026.zip (Size: 1.67 MB / Downloads: 3)
Print this item

  FM Radio Data Service
Posted by: bourret.brandon - 2020-05-01, 06:05 AM - Forum: Wishlist - Replies (2)

I'm not entirely sure if it's a hardware thing, a software thing, or both, but I'd love to see FM Radio Data Service decoding in NextPVR (and while I'm at it, I'd also love to see analog FM support in NextPVR v5). BTW this app blows WinTV out of the water, and I sort of regret dropping money to license their worthless, buggy WinTV Extend software. You've done great work here!

Print this item

  Broken X-NEWA Info Link on NextPVR.com
Posted by: cweseloh - 2020-04-30, 11:46 PM - Forum: NextPVR Enhanced Web Admin (NEWA) - Replies (4)

The link (labeled "INSTALL INFO") in the X-NEWA section of this page: http://www.nextpvr.com/download.html links to a missing forum post.  Can someone fix it? 

What's the best place to learn about X-NEWA and how to set it up?

Print this item

  4.2.5 and Mobile TV Guide
Posted by: NumberFive - 2020-04-30, 07:37 PM - Forum: Legacy (v4.x and earlier) - Replies (8)

Hi,

So don't laugh, but I've been using 3.4.8 on my main machine for the last 5 years and its been rock solid, but I decided to do an overhaul and upgrade to 4.2.5.  It's great, working very well.

I really like the new "modern" web interface on Desktop, it's really very slick and works well.  But I miss is the 'iNEWA Mobile' web interface.  It worked extremely well to set recordings when I was out and about, it was really easy to navigate.  Is there any way to restore this, or is there an alternative way of doing this now?

Thanks! Smile

Print this item

  Headless Linux install and update for dummies
Posted by: snagglewest - 2020-04-30, 06:08 PM - Forum: Linux - Replies (5)

With all this free time due to CV19 I’ve been cleaning up my install notes and stuff for my various systems and I figured I’d share my "Headless Linux install and update for dummies" instructions for folks like me.  These are steps, tricks and tips I’ve collected that work for me and hopefully will help others flatten the learning curve, especially if your new to Linux.  

EDIT - I had originally included update info too but the forum software won't let me post more than 10,000 characters so I'll break this into 2 posts.
 
Let me preface this with I'm running a headless Ubuntu 18.04LTS server in a VM on a FreeNAS server. I only use NextPVR for the back end and I'm only using HDHR Prime tuners.  I’m not going to go into tuner setup either which can be found in the Wiki.  These instructions are for Debian-based distributions which use the .deb package format such as Ubuntu and since this is about headless installations of the backend, it will also be only CLI.
 
At this point I’d also be remiss if I didn’t touch briefly on hardware requirements - if you intend to transcode, either to convert recordings to a new format from the .standard TS recording or want to watch Live TV from a web UI, then you need a fairly robust CPU to handle the load.  Let me say that again... transcoding is CPU intensive and trying to transcode with a underpowered CPU is a recipe for failure!  On the other hand, if you’re only intending to record and watch live TV though a client that plays the stream natively, (ie. nextpvr.exe, Kodi etc)  then you can get by with a low power CPU as the stream is played in the original format and does not require transcoding.  With all that out of the way, let’s get started.

Installing a fresh installation

SSH into your machine/VM with your favorite SSH client which will take you to your home directory in the terminal.
 
Check the timezone settings are correct and fix it if needed.  If the timezone is off then you’re going to have all sorts of odd issues, especially with EPG and recordings so now is the time to fix it and prevent that headache.  Yea, it's not a common issue but it happened to me so I figured I'd pass it along so nobody else has to go through the headache it caused me!

Check the clock settings
# timedatectl
 
Change the timezone if needed (here I’m using New York, use whatever you need for your location)
# sudo timedatectl set-timezone America/New_York
 
Update the OS software list and install updates so we  start off with a updated system and eliminate that variable
# sudo apt update
# sudo apt upgrade
 
Not sure if it’s necessary anymore, but make sure libc6-dev is installed
# sudo apt install libc6-dev
 
Not sure if this necessary anymore either, but just to make sure install hdhomerun-config if you’re using a legacy HDHR device
# sudo apt install hdhomerun-config
 
Now that we have the prerequisites taken care of let’s get to actually installing NextPVR. 
 
Download the .nextpvr installer .deb file
# curl https://nextpvr.com/nextpvr-helper.deb -O
 
Install the nextpvr installer .deb file
# sudo apt install ./nextpvr-helper.deb
 
The installer creates a web server that is run automatically after the install.  Give it a half a minute or so to start, then you should be able to open http://xxx.xxx.xxx.xxx:8866 in a browser to setup NextPVR from the web UI.
 
The default web UI login credentials are - "admin"/"password"

 --------------------------------------------------------------------------------

Some helpful commands:

Check status (sudo not required)
# service nextpvr-server status

Stop the NextPVR service
# sudo service nextpvr-server stop

Start the NextPVR service
# sudo service nextpvr-server start

Restart the NextPVR service
# sudo service nextpvr-server restart

To simplify maintenance you can  get a shell with the nextpvr user permissions
# sudo -u nextpvr bash

To return to normal user
# su - [your normal user name]

-------- Paths to various stuff --------

Main program stuff  (scripts, channel icons etc)
/var/opt/nextpvr

database
/var/opt/nextpvr/npvr.db3

config file
/var/opt/nextpvr/config.xml

Default recording directories
/home/npvr/recordings/livetv
/home/npvr/videos/recordings

logs
/var/opt/nextpvr/logs

channel icons
/var/opt/nextpvr/media/channels

So there ya go, everything I know about installing, updating and maintaining NextPVR on a headless Linux system.  I hope someone finds it useful and if anyone sees any mistakes or has easier ways of doing something let me know and I'll update this.

Print this item

  Premium Channel(s)
Posted by: jppl2000 - 2020-04-30, 04:30 PM - Forum: Windows - Replies (11)

Hello,  I am a newb to nextpvr.  I have discovered that with epg123 and schedules direct that I can now record on my updated win10 pc.  I am using an HDHR3CC.  I subscribe to one premium channel.  This channel appears to be impossible to update to the nextpvr menu although it appears in the epg123 list.  Am I doing this wrong, or can this not be achieved at all?  By the way, so far, the learning curve for Nextpvr is wonderful.  I am enjoying it but would like to be able to record my paid premium channel.  Thanks,  JIM   Huh

Print this item

Pages (6435): « Previous 1 … 485 486 487 488 489 … 6435 Next »
Jump to page 

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