NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public Wishlist v
« Previous 1 … 28 29 30 31 32 … 193 Next »
Remote Control Over The Network

 
  • 0 Vote(s) - 0 Average
Remote Control Over The Network
hasso
Offline

Senior Member

Posts: 465
Threads: 81
Joined: Dec 2004
#1
2011-07-01, 03:14 AM
How difficult would it be to remote control NPVR over the network... similar to something like Winamp which has a plugin which accepts all the normal play, stop, pause, etc. functions (beyond the present scheduling/settings web capabilities that NPVR has). Is this something on 'the list'? Love to be able to control NPVR over the network with my wireless mobile device.
Regards,
Hasso

[SIZE="2"]Server: NPVR 2.2.6, Asus E35M1-M PRO motherboard, 2 x 2GB DDR-1333 memory, 1 x 1.5TB SATA Samsung HD, 2 x 2TB SATA Seagate Green HD, 1 x Hauppauge HD4400, 2 x Hauppauge Nova T 500, Windows 7 Home.
Clients: EGreat M34A with MVPMCX2; HDX1000 with MVPMCX2 and internal 2TB SATA Seagate Green HD.[/SIZE]
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,723
Threads: 767
Joined: Nov 2003
#2
2011-07-01, 03:48 AM
Quote:Is this something on 'the list'
It wasnt something I was intending to do in the near future, particulaly because it wouldnt be much use unless I also wrote some sort of client for it too. Maybe in future release though, when I've got more time available.

The APIs are certainly there for any developers wanting to write their own though. ie, they'd need to write a plugin with some sort of interface to listen for network connections, then use the PluginHelper API for controlling playback.
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 52,953
Threads: 956
Joined: May 2006
#3
2011-07-01, 04:59 AM
I tried to get some developer interest in standard remote interface but it never went anywhere http://forums.nextpvr.com/showthread.php...-framework so I did something on my own.

Instead of PluginHelper API functions I felt I would need all keys to make a remote, but I couldn't use either of these to issue a play

base.HandleCommand("Play"); and
base.OnKeyDown(new KeyEventArgs(Keys.Control | Keys.P));

Martin
stustunz
Offline

Posting Freak

Posts: 5,111
Threads: 112
Joined: Oct 2006
#4
2011-07-01, 09:26 AM
Hippo remote for iphone uses vnc works pretty good
[SIZE="1"]Specs[/SIZE]
[SIZE="1"]Server:Cpu-Intel i3,ATI Radeon HD 5670 ,OS-Windows 7,2gig ram. 2xHvr4400,Nova-s plus(dvb-s SD),hvr2210(dvb-t HD)[/SIZE]
[SIZE="1"]Client:Cpu-AMD am2,Gpu-Ati HD2100 integrated ,OS-Windows 7,2gig ram[/SIZE]
[SIZE="1"]Client:Cpu Intel 2 gig ram ,Nvidia 9400[/SIZE]
[SIZE="1"]ClientTongueopcorn Hour A110[/SIZE]
[SIZE="1"]Client:Samsung [NZ][DVB-s][2012]BD-E5900x2 [/SIZE]
[SIZE="1"]Client:Samsung [NZ][DVB-s][2013]BD-F6500 [/SIZE]
hasso
Offline

Senior Member

Posts: 465
Threads: 81
Joined: Dec 2004
#5
2011-07-02, 01:36 AM
sub Wrote:... unless I also wrote some sort of client for it.

Just the hooks into NPVR would be great ;-). For me running a small PHP web server allowed me to create my own web client to control Winamp... A PLAY link would go to something like http://winamp.mydomain.com:<port>/?command=play, etc..

Could this be done through a plugin and API? Sorry, for the dumb question... I don't have coding experience aside from HTML and PHP so that's my only way for me to build my own network client into npvr.
Regards,
Hasso

[SIZE="2"]Server: NPVR 2.2.6, Asus E35M1-M PRO motherboard, 2 x 2GB DDR-1333 memory, 1 x 1.5TB SATA Samsung HD, 2 x 2TB SATA Seagate Green HD, 1 x Hauppauge HD4400, 2 x Hauppauge Nova T 500, Windows 7 Home.
Clients: EGreat M34A with MVPMCX2; HDX1000 with MVPMCX2 and internal 2TB SATA Seagate Green HD.[/SIZE]
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,723
Threads: 767
Joined: Nov 2003
#6
2011-07-02, 01:43 AM
hasso Wrote:Could this be done through a plugin and API?
Yes, a plugin could do this - but it'd need to provide it's own external connectivity, because there is nothing in the NextPVR.exe client application that handles incoming web requests or tcp connections etc.

ie, the existing builtin webserver runs in the recording server so is in a different process (nrecord.exe) and has no visibly or control over what the user is doing, so it'd be of no use for this.
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 52,953
Threads: 956
Joined: May 2006
#7
2011-07-02, 01:53 AM
sub Wrote:ie, the existing builtin webserver runs in the recording server so is in a different process (nrecord.exe) and has no visibly or control over what the user is
doing, so it'd be of no use for this.

I was thinking it would be better to have external communication via the web server on the standard web server port, and a class on the web server then communicates to a plugin via an localhost socket. I think that would be better then trying to synchronize NMT and PC external sockets and especially if access via a phone on the Internet is required.

Martin
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,723
Threads: 767
Joined: Nov 2003
#8
2011-07-02, 01:55 AM
All I give you is 'maybe in a future release'.
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 52,953
Threads: 956
Joined: May 2006
#9
2011-07-02, 02:10 AM
sub Wrote:All I give you is 'maybe in a future release'.

I am hoping you wouldn't have have to do anything other than than ensuring the control API is complete, there is enough state info. for a state machine and maybe add an HttpListener to a remote "page"

Martin
hasso
Offline

Senior Member

Posts: 465
Threads: 81
Joined: Dec 2004
#10
2011-07-22, 06:31 AM
Totally forgot that EventGhost has a webserver plugin which can be used to send events to NPVR/GBPVR. This will do nicely to remotely control NPVR/GBPVR through any browser-capable device (iPad, iPhone, PC, etc.)
Regards,
Hasso

[SIZE="2"]Server: NPVR 2.2.6, Asus E35M1-M PRO motherboard, 2 x 2GB DDR-1333 memory, 1 x 1.5TB SATA Samsung HD, 2 x 2TB SATA Seagate Green HD, 1 x Hauppauge HD4400, 2 x Hauppauge Nova T 500, Windows 7 Home.
Clients: EGreat M34A with MVPMCX2; HDX1000 with MVPMCX2 and internal 2TB SATA Seagate Green HD.[/SIZE]
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (4): 1 2 3 4 Next »


Possibly Related Threads…
Thread Author Replies Views Last Post
  ATSC tuning with the remote mvallevand 1 592 2024-01-22, 04:40 AM
Last Post: sub
  Full screen capable streaming via web browser control. GuruSR 2 2,183 2022-02-04, 03:40 PM
Last Post: sub
  Context Menu via remote TK978 5 2,677 2019-04-19, 12:21 AM
Last Post: TK978
  Control Key less control mvallevand 0 1,295 2018-09-15, 07:00 PM
Last Post: mvallevand
  Ability to control which drives are included in "largest free space" pool BrettB 2 1,796 2017-05-01, 12:03 PM
Last Post: BrettB
  More Control While Watching Recordings GWCowling323 2 2,457 2016-09-21, 09:06 AM
Last Post: lost@c
  HDMI-CEC support (Consumer Electronics Control) i.e. remote control over HDMI) tomper 22 11,641 2016-05-28, 06:13 PM
Last Post: fred250
  I wish I had a volume control .... puck64 47 14,162 2016-05-10, 10:48 AM
Last Post: stustunz
  Config to control what Channel Group is presented to Kodi JavaWiz 1 2,479 2015-11-04, 02:15 AM
Last Post: sub
  Control Over Timeshift Buffer Length and Better/More Reliable Retroactive Recording ChaosMageX 2 4,448 2015-10-24, 05:46 AM
Last Post: sub

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

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

Linear Mode
Threaded Mode