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,193
» Latest member: davidrfellows@gmail.com
» Forum threads: 65,379
» Forum posts: 602,219

Full Statistics

Online Users
There are currently 2019 online users.
» 1 Member(s) | 2013 Guest(s)
Applebot, Baidu, Bing, DuckDuckGo, Yandex, RonB1949

Latest Threads
Closed captioning in NPVR
Forum: Windows
Last Post: sub
Yesterday, 06:27 PM
» Replies: 39
» Views: 3,761
unable to use tvhat on ra...
Forum: Linux
Last Post: basaltvest
Yesterday, 07:22 AM
» Replies: 2
» Views: 495
Can't Scan for Channels F...
Forum: Linux
Last Post: mvallevand
Yesterday, 03:19 AM
» Replies: 15
» Views: 969
New iOS/tvOS/macOS client...
Forum: NextPVR iOS and AppleTV Clients
Last Post: nolipro
2026-09-09, 10:35 PM
» Replies: 44
» Views: 6,479
More than one HDPVR to th...
Forum: Hardware
Last Post: mvallevand
2026-09-05, 04:51 PM
» Replies: 7
» Views: 257
actors producer director
Forum: Wishlist
Last Post: a1blues
2026-09-04, 09:20 PM
» Replies: 4
» Views: 222
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: 221
HDHomeRun can't find tune...
Forum: Linux
Last Post: mvallevand
2026-09-01, 05:58 PM
» Replies: 1
» Views: 215
Can't upgrade from 6.1.1....
Forum: NextPVR Support
Last Post: blobbyguts
2026-08-31, 10:56 AM
» Replies: 1
» Views: 162
NextEnd and NFL Preseason
Forum: Windows
Last Post: mvallevand
2026-08-30, 03:13 PM
» Replies: 1
» Views: 200

 
  Web interface error
Posted by: Lensters - 2017-12-05, 11:20 PM - Forum: Legacy (v4.x and earlier) - Replies (2)

I had the "Live TV - black screen, no sound" problem which was fixed by shutting down and reinstalling. However, I still have an issue with the web interface. No matter how I try to access it (localhost:8866, titan:8866, 127.0.0.1:8866, 192.168.0.6:8866, 192.168.0.26:8866) I get:

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

Server Error in '/' Application.
Compilation Error
Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.

Compiler Error Message: CS1061: 'N_EWA.classes.Settings' does not contain a definition for 'GetIP4Address' and no extension method 'GetIP4Address' accepting a first argument of type 'N_EWA.classes.Settings' could be found (are you missing a using directive or an assembly reference?)

Source Error:


Line 127: Logger.Info("IP V6 Detected on Server ");
Line 128: Logger.Info("IP6 Address: " + address);
Line 129: if (Global.Settings.autologinNets.CheckNumber(Global.Settings.GetIP4Address()))
Line 130: {
Line 131: IsInternalnetwork = true;


Source File: d:\Users\Public\NPVR\web\App_Code\Classes\VerifyInernalNetworkJSON.cs Line: 129

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

I have disabled the second real interface and IPv6 on the machine. I do have an Oracle VirtualBox virtual interface setup. Here are the log files...

Print this item

  Help with batch file
Posted by: CDinger - 2017-12-05, 07:23 PM - Forum: Add-ons (3rd party plugins, utilities and skins) - Replies (4)

Below is my batch file. To be clear I modified a batch file from the NPVR wiki created by javawiz. I use it to specify different ini files for different channels. I want to have an ini for football games. I often watch one game live while recording another and it would be great to have the commercials processed when I watch the second game. The channel specific ini are ok but the football specific one does a better more reliable job on detecting show vs commercial. However, when I remove the REM for the football if statement all I get is notification the recording is complete and comskip is NOT run on the file no matter what type of program I record.

I was contemplating using the same approach to having show specific ini but now it seems my approach doesn't work or at least I don't know how to make it work. Also below is the log, I've been recording random shows for testing purposes but the make a change wait 30-60 minutes and see if it works approach isn't going so well so I am asking for help.

Thanks,

Craig

@Echo off
GoTo :BEGIN
=================================================================================================
PostProcessing.bat
Run as soon as a recording ends. Commonly used for adding commercial skipping functionality
(comskip) or transcoding.
-------------------------------------------------------------------------------------------------
Arguments:
1.filename - the full path and file name of the recording file.
2.channelNumber - the channel number it was recorded from.
3.oid - unique identifier to the scheduled_recordings table, applicable even if
filename (%1) changes
4.capture Oid - unique identifier to the device used for recording
5.recording title - the title of the recording
6.comskip ini - the name of the comskip ini file for commercial skip
-------------------------------------------------------------------------------------------------
Modification History
Date By Description
------ ---------- -------------------------------------------------------------------------------
11132017 CD Initial Template
=================================================================================================
:BEGIN
SETLOCAL
Set SCRIPTNAME=%0
Set BASEDIR=c:\Users\Public\NPVR
Set LOGFILE=%BASEDIR%\Logs\PostProcessing.log

Set FILENAME=%1
Set CH_NUM=%2
Set OID=%3
Set DEV_OID=%4
Set REC_TITLE=%5

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

cd /d "C:\comskip"

if "%2" == "6.1" goto skip
if "%2" == "6.2" goto skip
if "%2" == "6.3" goto skip
goto next

Confusedkip:
echo skipping comskip on %1; channel %2 because it is in skip list >> %LOGFILE%
goto continue

:next

rem if "%5" == "Football" goto Football
rem if "%5" == "College Football" goto Football
if "%2" == "3.1" goto channel_3.1
if "%2" == "10.1" goto channel_10.1
if "%2" == "13.1" goto channel_13.1
if "%2" == "40.1" goto channel_40.1
goto generic



:channel_3.1

echo %date%,%time% - invoking comskip on %1 channel %2 ini >> %LOGFILE%
comskip --ini=channel_3.1.ini %1
echo %date%,%time% - comskip finished with %1 channel %2 ini >> %LOGFILE%
goto continue

:channel_10.1

echo %date%,%time% - invoking comskip on %1 channel %2 ini >> %LOGFILE%
comskip --ini=channel_10.1.ini %1
echo %date%,%time% - comskip finished with %1 channel %2 ini >> %LOGFILE%
goto continue

:channel_13.1

echo %date%,%time% - invoking comskip on %1 channel %2 ini >> %LOGFILE%
comskip --ini=channel_13.1.ini %1
echo %date%,%time% - comskip finished with %1 channel %2 ini >> %LOGFILE%
goto continue

:channel_40.1

echo %date%,%time% - invoking comskip on %1 channel %2 ini >> %LOGFILE%
comskip --ini=channel_40.1.ini %1
echo %date%,%time% - comskip finished with %1 channel %2 ini >> %LOGFILE%
goto continue

:Football

echo %date%,%time% - invoking comskip on %1 channel %2 ini >> %LOGFILE%
comskip --ini=Football.ini %1
echo %date%,%time% - comskip finished with %1 channel %2 ini >> %LOGFILE%
goto continue


:generic

echo %date%,%time% - invoking comskip on %1 >> %LOGFILE%
comskip %1
echo %date%,%time% - comskip finished with %1 >> %LOGFILE%

:continue

:eof

GoTo :EXITJOB

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

--------------------------------------------------------------
:EXITJOB
Exit /b


Below is the output logfile

12/05/2017 10:00:01.37 Recording complete - filename: "D:\Loving Spoonfuls\Loving.Spoonfuls.S03E08.Yvonne,.JFK.and.the.Rabbit.ts" ChannelNUM: 29.3 OID: 22744 DeviceOID: 20 Title: "Loving Spoonfuls"
Tue 12/05/2017,10:00:01.38 - invoking comskip on "D:\Loving Spoonfuls\Loving.Spoonfuls.S03E08.Yvonne,.JFK.and.the.Rabbit.ts"
Tue 12/05/2017,10:00:56.67 - comskip finished with "D:\Loving Spoonfuls\Loving.Spoonfuls.S03E08.Yvonne,.JFK.and.the.Rabbit.ts"
12/05/2017 10:01:00.48 Recording complete - filename: "D:\ABC 10 News Mornings at 9am\ABC 10 News Mornings at 9am_20171205_09001000.ts" ChannelNUM: 10.1 OID: 22743 DeviceOID: 22 Title: "ABC 10 News Mornings at 9am *"
Tue 12/05/2017,10:01:00.49 - invoking comskip on "D:\ABC 10 News Mornings at 9am\ABC 10 News Mornings at 9am_20171205_09001000.ts" channel 10.1 ini
Tue 12/05/2017,10:06:16.91 - comskip finished with "D:\ABC 10 News Mornings at 9am\ABC 10 News Mornings at 9am_20171205_09001000.ts" channel 10.1 ini
12/05/2017 10:31:00.99 Recording complete - filename: "D:\Global 3000\Global 3000_20171205_10001030.ts" ChannelNUM: 6.3 OID: 22745 DeviceOID: 20 Title: "Global 3000"
skipping comskip on "D:\Global 3000\Global 3000_20171205_10001030.ts"; channel 6.3 because it is in skip list


Below is after removing the rem from the batch file.

12/05/2017 11:01:00.72 Recording complete - filename: "D:\The View\The View_20171205_10001100.ts" ChannelNUM: 10.1 OID: 22746 DeviceOID: 22 Title: "The View"
12/05/2017 11:01:00.78 Recording complete - filename: "D:\Priscillas Yoga Stretches\Priscillas Yoga Stretches_20171205_10451100.ts" ChannelNUM: 6.2 OID: 22747 DeviceOID: 20 Title: "Priscilla's Yoga Stretches"
skipping comskip on "D:\Priscillas Yoga Stretches\Priscillas Yoga Stretches_20171205_10451100.ts"; channel 6.2 because it is in skip list

Print this item

  Guide Scrolling
Posted by: jcole998 - 2017-12-05, 02:40 PM - Forum: X-NEWA - Replies (3)

I am having excellent success in using X-NEWA on two of my Android devices, a Samsung tablet and a Motorola cellphone. Live TV in HD is wonderful!(on the local LAN so far...)

But both devices exhibit the same issue with the TV Guide: The guide does show only the channels that are in the channel group I've set in Settings. But if use the up or down sweep gesture, it seems that I can only view the first and last pages and nothing in between. This behavior is the same regardless of the channel group.

Is this a bug? Am I doing something wrong?

Also, is there some way to change channels directly using keypad input?

Print this item

  How can I stream Digital Radio to kodi with NPVR?
Posted by: im_n00b - 2017-12-05, 01:26 PM - Forum: Legacy (v4.x and earlier) - Replies (17)

Hi
I'm trying to stream digital radio to kodi using npvr.
by far I can only stream digital tv. the digital radio is the same frequency as the digital tv (514000)
every time I try to access the stream, I get the following message:
Streaming Failed (transcoder exited) - on the npvr localhost
Kodi is crashing everytime
how can I fix this?

I have the following decoders:
LAV Audio decoder, ffdshow audio decoder, PDR MPEG Muxer, Microsoft DTV-DVD Audio decoder, MPEG Audio decoder

Thank you for your help

Print this item

  Videos - Eliminate Menu Delays due to Slow USB Disk Drives
Posted by: meccano - 2017-12-04, 07:41 PM - Forum: Wishlist - Replies (4)

On my videos menu I have 9 video sources defined, some on local hard drive, some on network hard drives and some on local USB hard drives. Because I use USB3 hard drives this menu loads slowly as the hard drives usually have to spin up before the menu is displayed.

Can this delay be eliminated in some manner perhaps by caching the key information, e.g. folder.jpg, etc. at NextPVR startup? Perhaps I should be able to specify in the config that a particular video source should be cached because its slow?

I frequently use the videos menu and there is usually a significant delay before it is displayed whenever I need to switch between video sources, even if I am not using the USB3 disk drive.

David

Print this item

  Schedules Direct + ATSC Channel
Posted by: shspvr - 2017-12-04, 04:31 PM - Forum: Legacy (v4.x and earlier) - Replies (9)

Hey sub how come there option to use Schedules Direct for setup ATSC tuner in stead of pull the EPG off the tuner which as you know is a bit limited to 24 hour

Print this item

  Complete deletion of Nextpvr.
Posted by: Orion88 - 2017-12-04, 09:45 AM - Forum: Legacy (v4.x and earlier) - Replies (1)

Hi,
I need to do a completely new install, I've tried to uninstall and then reinstall but my channel list has remained so I am unable to refresh those settings.
Is there a simple way of starting from scratch or how do I manually delete these settings?
I managed to get nextpvr functioning just fine on one of my PCs but the other one is proving awkward.

I think this may involve a database, if so how do I delete that file?
Thak you in advance Smile

Print this item

  Classic web interface issues
Posted by: turndave - 2017-12-03, 09:49 PM - Forum: NextPVR Enhanced Web Admin (NEWA) - Replies (3)

I tend to like the "Classic" web interface better than the "Modern" one. Partly because it includes some additional info not included in Modern (like Original Air Date). But, some time ago the Manage Recordings view developed a problem when scrolling down the page. I have minimal web page designing skills, but it appears to me that the issue may have something to do with overlapping "frames".

At the bottom of the page, thee is a frame that illustrates the color coding scheme for "Pending", "In Progress", etc. The same is true on the "TV Guide" page. With the latter, if I scroll up the page, that bottom frame stays put as one would expect. But... on the Manage Recordings page, when you try to scroll down through the list of recordings, that bottom frame scrolls up, covering over the info on one of the recordings. If one looks close at the scroll bar on the right side of the window, the scroll bar extends down into the bottom frame area on the Manage Recordings page, but does not do so on the TV Guide page.

I may not be describing this well enough to follow... so in the vein of "a picture is worth a thousand words", I have attached four screen captures. Two are of the TV Guide page and two are of the Manage Recordings page. In each case, there is one screen capture reflecting being scrolled all the way to the top of the list, and another partially scrolled down. I have annotated in red a few key points to observe.

I usually use Firefox, but the same behavior occurs if I use Chrome or Edge. And if I use a different computer. Perhaps most people use the "Modern" web interface and that is why I haven't noticed this being reported earlier.

Dave

Print this item

  Tuner not detected ;(
Posted by: nosfe - 2017-12-02, 09:53 PM - Forum: Legacy (v4.x and earlier) - Replies (3)

Hi,

I installed Nextpvr on windows Server 2008 R2 (Windows updated).
NPVR does not show up in Devices tab (my network Avermedia F200 HomeFree Duet tuner Tv) -analog-
The firwall is desactived
The drivers of Avermedia are installed
In the device tab the device button is off
I tried the CheckFilter diag (see below) and logs files
You can see the logs in attached files

Have you any idea please ?

For the test, on one of my Windows 10 Pc, the tuner is detected.

(I checked the faq first)

Sorry for my english Wink

Thanks you for your help

NPVRSetup_4_0_4_171121 installed

Print this item

  NEWA modern "NEW" page missing urls???
Posted by: snagglewest - 2017-12-02, 08:44 PM - Forum: NextPVR Enhanced Web Admin (NEWA) - Replies (3)

Restarted the server today and got a notice there was a new version of Npvr so I downloaded and installed 4.0.4(171121). Everything seemed to go fine but... the modern web interface "NOW" screen now has what appears to be a glitch. The page displays correctly but clicking the icon does nothing. It appears the problem is there's no url attached to the channels. The TV guide page works fine though.

I tried a reinstall but no love. Anyone else seeing this?

Snag

Print this item

Pages (6435): « Previous 1 … 749 750 751 752 753 … 6435 Next »
Jump to page 

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