2016-09-09, 06:37 PM (This post was last modified: 2016-09-09, 07:11 PM by Handy.Man.)
You should be able to see which tuners are in use with the Device Status window.
If you wanna know what was recorded on which device in the last few days, go to the log folders and look at ndigitalhost-**.log* files.
I also use compskip that logs all recordings in this format in ParallelProcessing.log
Code:
2016-02-20,18:01:03,55 - CTV News Montreal_20160220_18001900 (382698) recording from channel 12 on tuner 20
This line in ParallelProcessing.bat does the logging.
Code:
echo %date%,%time% - %~n1 (%3) recording from channel %2 on tuner %4 >> C:\Users\Public\NPVR\Comskip\ParallelProcessing.log
Server : NextPVR 4.2.3 Intel Core2 Quad Q6600 @2.4GHz 8GB Win7Pro, Hauppauge HVR-2250 Dual Tuner, DIAMOND ATI Theater HD 750 USB TV Tuner, Homemade fractal antenna, SchedulesDirect EPG.
Client : NextPVR 4.2.3 Intel I7-2600K @4.5GHz 8GB, Radeon HD6800, Win7Pro
Thanks. when does ParallelProcesing.bat get invoked? when the recording service is first started, when the recording of a show is initiated? do other processes beyond recording also use ParallelProcessing.bat?
rgr on show status.
the real goal is to know if the live tv is on tuner 1, and all background recording is on tuner 2 & 3.
the idea being that if I have bad signal on 2 & 3 on a recording, I can check the antenna feeding those tuners.
that kind of thing. all tuners are good but was curious on a way to find out.
alternate thought is how do I know which tuner is being used at any given moment for the live tv stream. is it always tuner 1?
herringj Wrote:Thanks. when does ParallelProcesing.bat get invoked? when the recording service is first started, when the recording of a show is initiated? do other processes beyond recording also use ParallelProcessing.bat?
ParallelProcessing.bat gets invoked just after each recording gets started and is passed various parameters such as the channel, tuner ID, file name, etc. I've never heard of anything else using ParallelProcessing.bat besides the Recording Service when it begins each recording.
herringj Wrote:rgr on show status.
the real goal is to know if the live tv is on tuner 1, and all background recording is on tuner 2 & 3.
the idea being that if I have bad signal on 2 & 3 on a recording, I can check the antenna feeding those tuners.
that kind of thing. all tuners are good but was curious on a way to find out.
alternate thought is how do I know which tuner is being used at any given moment for the live tv stream. is it always tuner 1?
There is a very complicated algorithm that is used to determine which tuner gets selected for any given recording. Presuming that all channels are available on all tuners, a live tv stream could be coming from any of the tuners. NextPVR will generally try to optimize the tuner usage (i.e. use the same tuner for multiple recordings or a recording & live tv, etc.) when possible.
Using the ParallelProcessing.bat to generate a log file which lists all of the recordings and which tuner was used for each can be extremely helpful when troubleshooting quality issues since you typically don't know that there is a quality issue until later when you watch a recording (and often then the regular logs which show the same information have rolled over and been deleted).