I was not aware of the situation at the time (until the system drive filled up), but apparently last week one day the drive that contains my Default recording directory "went away from Windows". What I discovered is that after that, NPVR apparently began saving all of the recordings directed to the Default folder in C:\Users\Public\Public Videos\. My C: drive is a SSD which is somewhat small, so after a few days, it ended up filling up. That's when I discovered the problem.
I do appreciate the fact that the NPVR Recording Service did continue to record programs for me. However, it would have been nice to have been notified of the problem (that the Default recording folder wasn't available). And I'd prefer if it would switch to using one of the other defined recording folders (maybe the one with the most space available?) rather than the C:\Users\Public\Public Videos\ folder.
Sorry, I can't include logs since they were long gone when I discovered the problem 4 days later.
Hi,
I am new to NextPVR. Windows 10, trying to replace Windows Media Center.
My TV Tuner is a Hauppauge WinTV 850 USB.
It works fine with Microsoft Windows Media Center, and WinTV 7. All local over the air channels found.
NextPVR shows the device. However, when scanning for channels (ASTC) none are found. I tried a variety of Hauppauge drivers, and restarted half a dozen times. No luck.
So I am watching CBS live tv. I push the pause bar and walk away. I return and push the pause bar again to play the paused video. Timer shows its been on pause for 48:57. Video starts to play.. I get about 3-4 seconds of video and a burst of audio then everything freezes with a black screen. Try pounding the escape key, the return key all to no avail. Then I decide to focus on 2 hits on escape followed by 2 hits on return followed by 2 hits on escape.. eventually it returns to the main menu from which I am able to reengage the Live Tv but my 49 minute paused video is gone. Watching live tv again. Zipped files attached. look at the end for hiccup.
I'm trying to get the built in transcoding on my Extend to work. If I play a video through the HDHomerun app, I can check the tuner status and see that transcoding is working. Recordings and live TV through NextPVR are not transcoded.
The service type for channels in the nextpvr device settings is H.264HD.
Any suggestions on what to try would be appreciated.
Please post any support issues in the support forum. Support questions posted in this thread will be deleted.
This is a fairly small incremental release over 4.0.4, but there is a few changes I'd like to get out there soon rather than later.
Changes:
Quote:
- add support for .ts playback with cinema style resolutions such 1.85:1 and 2.39:1
- fixed issue where there could be a disruption or repeating of content where overlapping recordings were happening on a tuner.
- IPTV ondemand streams now shown in a new OnDemand screen, rather than in the TV Guide 'All Channels' list.
- fixed issue where NextPVR could freeze during playback and crash
- fixed issue that could cause nrecord.exe to crash while stopping a recording.
- fixed issue where bottom of H.264 video frames couple be corrupt
- fixed issue where video could suddenly start playing back in fastforward style
- fixed issue with client/server mode that could cause corruption during playback of recordings.
- added support for importing IPTV channels from providers that use a .gz file for their xmltv url
- added support for chunked encoding, used for http tranfers by some IPTV providers
- fixed issue where ampersand character in provider name would cause digital channels to not show during scan of that frequency
- fixed issue that could cause some channels to have no icon in web and kodi
- fixed issue where radio wouldn't play from web app or iOS app.
So I got the IPTV working but my "source" is giving me an error the remote server returned error 401 unauthorized. I was told when I subscribed that I could only watch on one device so I think this may be the issue. there is a section when adding the channels to limit the number of connections (set at 16) but its grey out and I cannot change it. Anyway to force this to only allow 1 active stream? thanks in advance. Anyone has ideas to fix the 401 remote error I would like to try. there is some on demand stuff that works but seems to lag a bit, but the live tv all of them fail.. Worth mentioning these were added VIA m3u8
Thanks in advance
UPDATE: figured out how to change that value to 1. So we will see if it allows me to play after the authorization resets
meanwhile ANY help for IPTV and this error would be great
Since upgrading to this version I have noticed an increase in the number of pixelated programs we have been watching. I hardly ever saw this in the past year but it seems to be a daily occurence on this version. Here is a screen shot from a 1080i cbs channel. Its always about the same .. the bottom of 1/10 to 1/3 of the screen has these coloured blocks on it then it goes away for a while and comes back again.
I am attaching logs too . I zipped the log within seconds of this happening.
So, I recorded a marathon of All in the family, and as it so happens I'll need to record some episodes over. However, since the program was recorded the first time, nextpvr doesn't seem to want to record it again.
Where is the recording cache or a setting that will allow it to start recording episodes it has already recorded?
I don't know how anyone else feels but I would like to see an automatic backup option in the MISC options that rolls config.xml and npvr.db3 for 5 days like what happens to the logs.
Just a simple input field of what directory you want it backed up to. In my case it's going to external drive g:\npvrbackup
I added some code to run in my PostUpdateEPG.bat file but it might be something to consider in the next update by default.
I included a "mock up" with the feature added.
Although it would be nice if it could be done automatically in a zipped file.
Code:
@Echo off
GoTo :BEGIN
:: Roll config.xml & npvr.db3 once per day when the EPG update is triggered
:BEGIN
SETLOCAL
Set SCRIPTNAME=%0
Set BASEDIR="c:\users\public\npvr"
Set DATA=%BASEDIR%\npvr.db3
Set DATA2=%BASEDIR%\config.xml
SET Setbackup="g:\npvrbackup\npvr.db3"
SET Setbackup2="g:\npvrbackup\config.xml"
:ROLL_backup
If EXIST %Setbackup%.4 COPY %Setbackup%.4 %Setbackup%.5 > nul
If EXIST %Setbackup%.3 COPY %Setbackup%.3 %Setbackup%.4 > nul
If EXIST %Setbackup%.2 COPY %Setbackup%.2 %Setbackup%.3 > nul
If EXIST %Setbackup%.1 COPY %Setbackup%.1 %Setbackup%.2 > nul
If EXIST %DATA% COPY %DATA% %Setbackup%.1 > nul
If EXIST %Setbackup2%.4 COPY %Setbackup2%.4 %Setbackup2%.5 > nul
If EXIST %Setbackup2%.3 COPY %Setbackup2%.3 %Setbackup2%.4 > nul
If EXIST %Setbackup2%.2 COPY %Setbackup2%.2 %Setbackup2%.3 > nul
If EXIST %Setbackup2%.1 COPY %Setbackup2%.1 %Setbackup2%.2 > nul
If EXIST %DATA2% COPY %DATA2% %Setbackup2%.1 > nul
GoTo :EOF
GoTo :EXITJOB
Exit /b