NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public NextPVR Support Legacy (v4.x and earlier) v
« Previous 1 … 197 198 199 200 201 … 433 Next »
Remotely checking tuners

Remotely checking tuners
haverer2
Offline

Member

Posts: 151
Threads: 41
Joined: Mar 2013
#1
2014-08-12, 07:51 PM
Hi!
Dead quick one...
Just wondering whether it is possible to check the status of the tuners from a client... i.e. see which ones are tied up doing what...
Is it then possible to kill / reset a tuner if it happens to have got stuck???

Keep up the great work all,
John
psycik
Offline

Posting Freak

Posts: 5,210
Threads: 424
Joined: Sep 2005
#2
2014-08-12, 09:18 PM
haverer2 Wrote:Hi!
Dead quick one...
Just wondering whether it is possible to check the status of the tuners from a client... i.e. see which ones are tied up doing what...
Is it then possible to kill / reset a tuner if it happens to have got stuck???

Keep up the great work all,
John

Run the NextPVR Tray app on the client, and it shows you which tuners are in use.
ACTCMS
Offline

Posting Freak

UK
Posts: 2,730
Threads: 101
Joined: Jun 2007
#3
2014-08-12, 09:56 PM
haverer2 Wrote:Is it then possible to kill / reset a tuner if it happens to have got stuck???
If you are having problems with tuners getting 'stuck' you should post a set of logs when it happens along with an explanation of what you were doing at the time.

It's generally much better to find and fix the underlying problem rather than treating the symptoms... Smile

Alex
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 52,947
Threads: 956
Joined: May 2006
#4
2014-08-12, 11:37 PM
I check the backend with this http://ip:8666/public/services/InfoXML.aspx and use Sysinternals psshutdown to restart or put it sleep.

Martin
haverer2
Offline

Member

Posts: 151
Threads: 41
Joined: Mar 2013
#5
2014-08-13, 09:19 AM
thanks for all the replies... that's really useful :-) Sorted :-)
haverer2
Offline

Member

Posts: 151
Threads: 41
Joined: Mar 2013
#6
2014-12-13, 06:53 PM
psycik Wrote:Run the NextPVR Tray app on the client, and it shows you which tuners are in use.

Just got around to trying this out.... it doesn't seem to do anything!!!!

My TV tuners are on 192.168.0.99 and ntray.exe shows all the relevant.
What I want to be able to do though is run ntray.exe on 192.168.0.100 and have it give that information!?!?!?

Is that a no go?!

Thanks,
John
Reddwarf
Offline

Posting Freak

Posts: 6,629
Threads: 230
Joined: Mar 2007
#7
2014-12-13, 08:28 PM
haverer2 Wrote:Just got around to trying this out.... it doesn't seem to do anything!!!!

My TV tuners are on 192.168.0.99 and ntray.exe shows all the relevant.
What I want to be able to do though is run ntray.exe on 192.168.0.100 and have it give that information!?!?!?

Is that a no go?!

Thanks,
John
Have you set up that computer as a client to 192.168.0.99?

"I'd rather have a bottle in front of me than a frontal lobotomy"
haverer2
Offline

Member

Posts: 151
Threads: 41
Joined: Mar 2013
#8
2014-12-13, 09:56 PM
Reddwarf Wrote:Have you set up that computer as a client to 192.168.0.99?

agh... perhaps I've misunderstood how this all works then.... do I actually have to install npvr on the client machine too.... I was using XBMC as the client.... I was hoping just to run ntray.exe and it pick up the state of the tuners from the other machine on the network... so do I have to install npvr on the client as well and then set it up as a client..>?
thanks,
johnsonx42
Offline

Posting Freak

Posts: 7,298
Threads: 189
Joined: Sep 2008
#9
2014-12-13, 11:16 PM
yes, you'd need to install NextPVR on the client, then configure it as a client (in Settings->Devices, "act as pc client" checkbox and set the server name and database share). Once that is done, you don't need to actually run NextPVR, and you can set the NPVR Recording Service to Disabled.

there is also a windows vista/7 sidebar/desktop gadget available that will report recording status, disk space, etc. That can run on any machine whether NPVR is installed or not, as it accesses the NEWA web server. Download it from the statistics page of NEWA (http://ip:8866/info2.aspx). Gadgets are officially gone from win 8/8.1, but a google search will reveal how to add them back in again if you want them (ok, here: http://winaero.com/download.php?view.60).
server: NextPVR 5.0.7/Win10 2004/64-bit/AMD A6-7400k/hvr-2250 & hvr-1250/Winegard Flatwave antenna/Schedules Direct
main client: NextPVR 5.0.7 Desktop Client; LG 50UH5500 WebOS 3.0 TV
JavaWiz
Offline

Posting Freak

Jacksonville, FL. USA
Posts: 2,522
Threads: 141
Joined: Dec 2006
#10
2014-12-14, 06:57 PM (This post was last modified: 2014-12-16, 02:40 AM by JavaWiz.)
Here's another option if your client is a windows machine and has powershell installed:

Copy the script below into a file, change server name to your NPVR host machine - drive:\directory\ChkNpvrTunerStatus.ps1 (drive and directory your preference):

Code:
#---------------------------------------------------------------
# ChkNpvrTunerStatus.ps1 - Check NPVR Server tuner statuses
#---------------------------------------------------------------
# Leverage NPVR Webservices to retrieve server info and parse
# out all tuners and their respective status.
# NOTE:
#   Change server name in below http call to match your server.
#---------------------------------------------------------------

$NpvrInfo = New-Object System.Xml.XmlDocument
$NpvrInfo.Load("http://nirvana:8866/public/services/InfoXML.aspx")

$NpvrInfo.RecordingStatus.Tuner | ForEach-Object {
    if ($_.status -eq " - is Sleeping") {
        " Sleeping: " + $_.name
    }
    elseif ($_.status -eq " - is Recording") {
        "Recording: " + $_.name
        "   +-------" + $_.EPGEvent
    }
    else {
        $_.status + " " + $_.name + $_.EPGEvent
    }
}

Then from the command line type:
powershell -f drive:\directory\ChkNpvrTunerStatus.ps1

It will display output similar to:
Code:
D:\Utils2\ps_scripts>powershell -f ChkNpvrTunerStatus.ps1
Sleeping: DCR-2650 / HDHR Prime 1318E35A-3
Sleeping: DCR-2650 / HDHR Prime 1318E35A-4
Sleeping: DCR-2650 / HDHR Prime 1318E35A-5
Sleeping: IPTV
Recording: DCR-2650 / HDHR Prime 1318E35A-0
   +-------Criminal Minds
Recording: DCR-2650 / HDHR Prime 1318E35A-1
   +-------D:\PVR\LiveTV\live-20 CNN-2847.ts
Sleeping: DCR-2650 / HDHR Prime 1318E35A-2
Sleeping: Hauppauge WinTV 418 BDA Tuner:1
Recording: Hauppauge WinTV-7164 Analog Capture:1
   +-------Gangster Squad
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (2): 1 2 Next »


Possibly Related Threads…
Thread Author Replies Views Last Post
  Duel USB tuners lock out cablood1 4 1,739 2020-10-30, 05:35 PM
Last Post: sub
  Removing empty groups; checking framerate/bitrate/resolution? CenturyBreak 12 4,249 2020-02-18, 06:26 AM
Last Post: sub
  Nextpvr can't find tuners RTKAT 7 2,630 2020-02-11, 07:34 PM
Last Post: RTKAT
  No tuners and cannot watch/record ukmark62 13 4,029 2019-08-11, 08:41 PM
Last Post: ukmark62
  Unused Tuners jcole998 4 1,537 2019-07-04, 01:20 PM
Last Post: jcole998
  6 tuners, multiple recordings issue Ddodge13 25 5,258 2019-02-19, 01:01 AM
Last Post: sub
  Error "Recording service not running" -- but really no tuners available? daneo 6 2,124 2019-01-30, 02:11 PM
Last Post: daneo
  New NextPVR Setup (new user) with Ceton tuners Bradachin 6 2,121 2018-11-20, 12:30 PM
Last Post: Graham
  maximum tv tuners amabletrujillo 11 3,082 2018-09-28, 05:02 PM
Last Post: sub
  NextPVR does not utilize all 4 tuners jmooremcc 19 6,908 2018-08-29, 03:38 PM
Last Post: johnsonx42

  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

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

Linear Mode
Threaded Mode