NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public NextPVR Other Clients Old Stuff (legacy) MVP & NMT MVPMCX2 and other NMT stuff v
« Previous 1 … 10 11 12 13 14 … 37 Next »
Something old, something new..

 
  • 0 Vote(s) - 0 Average
Something old, something new..
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,197
Threads: 958
Joined: May 2006
#1
2009-05-21, 11:58 PM (This post was last modified: 2009-07-23, 04:34 AM by mvallevand.)
For that real feel of MVP emulation, if you who have the newer Hauppauge remote and wished it worked with the PCH, well now it can.

Installation

Place the lircd1 file in you mvpmc share and modify the initialisation area of gbpvr.cgi to include these commands

cp /etc/mvpmc/lircd1 /bin
killall lircd
lircd1 &

PCH Keys

If you need the PCH remote it should still work however the Hauppauge, remote will work in most PCH functions too. Here are some PCH mappings.

Zoom = #
Time Seek = *
Angle = Record
Title = Video
USB Eject = Go
Source = Menu

I haven't decided what to do with the Menu key. On the PCH it has a limited role in emulation as the Picture quick key, as the Source and Home keys are more versatile. Suggestions on mapping those keys are welcomed, we will probably need a new mvpmcx2 to make it come together.

Martin
mikeh49
Offline

Posting Freak

Posts: 1,129
Threads: 81
Joined: Apr 2005
#2
2009-05-22, 02:48 PM
Would this work with the eGreat M34A as well? If so, seems like it may solve the eGreat remote problem. Or, with an eGreat unit to work with, could a similar solution be developed?

Thanks, Martin, for your great work on this.
HTPC: Optiplex 7010, HDHR Prime/Avermedia Duet A188, NPVR 4.2.5, Win10 Pro
Test:
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,197
Threads: 958
Joined: May 2006
#3
2009-05-22, 04:14 PM
You read my mind, but I still can't guarantee that this will work. As it happens an M34A owner is asking about similar functionality here http://www.networkedmediatank.com/showth...?tid=22603 so if I can get his xbox remote working, the answer will probably be yes,

Martin
davidwu1
Offline

Junior Member

Posts: 1
Threads: 0
Joined: Mar 2009
#4
2009-05-22, 04:28 PM
Nice! Thanks Martin. I bet that I'll be able to get my Harmony even better dialed in with this! =)
martint123
Offline

Posting Freak

UK, East Yorkshire
Posts: 4,658
Threads: 208
Joined: Nov 2005
#5
2009-05-22, 05:14 PM (This post was last modified: 2009-05-22, 08:53 PM by martint123.)
It's just like welcoming back an old friend Wink
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#6
2009-05-22, 09:14 PM
martint123 Wrote:It's just like welcoming back an old friend Wink

I have to agree on that....the MVP Remote has always "felt" better and seems more intuitive.....not sure why....but it does....and I like it.... Big Grin
Intel Core i7 @ 4.00GHz Skylake 14nm
ASUSTeK COMPUTER INC. Z170-DELUXE
Windows 10 Pro x64
PVR Software: NPVR 5.1.1
SiliconDust HDHomeRun HDHR5-4US Connect Quatro 4 Channel Tuner
Roku Ultra
2 PCH A-100's
jksmurf
Offline

Posting Freak

HK (DMBTH)
Posts: 3,590
Threads: 410
Joined: Jul 2005
#7
2009-05-23, 05:52 AM
mvallevand Wrote:... modify the initialisation area of gbpvr.cgi to include these commands ...Martin

Sorry, but which is the "initiliasation part? Is it after the existing cp line?

k.

Code:
#!/bin/sh
echo "Content-Length: 29";
echo "Content-type: text/html";
echo "";
cd ~
if [ -f /etc/mvpmc/mvpmcx2 ]
then
    echo "mvmcx2 is loaded";
else
    mkdir /etc/mvpmc
    mount -t cifs //192.168.1.10/mvpmc /etc/mvpmc -o username=root,rw;
    mkdir /mnt/D:\\GBPVRDVDLibrary
    mount -t cifs //192.168.1.10/GBPVRDVDLibrary /mnt/D:\\GBPVRDVDLibrary -o username=guest,ro
    cp /etc/mvpmc/utelnetd /usr/bin
    ln -s /lib/librmjpeg.so /lib/libjpeg.so.62
    ln -s /lib/librmzlib.so /lib/libz.so
    ln -s /lib/librmzlib.so /lib/libz.so.1
    ln -s /lib/librmzlib.so /lib/libz.so.123
    utelnetd -l /bin/sh -p 23 &
    echo "Telnetd started on port 23............";
fi
killall gaya
sh -c /etc/mvpmc/startmeup 2>/dev/null >/dev/null &
exit 0;
ASUS STRIX X470-F AMD 2700x 4GHz | Win10Prox64 | 32GB | NVIDIA GEforce GT1030 Fanless | WinTV DMB-TH | WinTV HVR-1280 | Hauppauge Colossus | AC86U/AC68U | USB-UIRT | RPi4 Libreelec | Sony Bravia LCD X9000F Android TV |
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,197
Threads: 958
Joined: May 2006
#8
2009-05-23, 06:16 AM
The major part with the mkdir, mounts etc.

Martin
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,197
Threads: 958
Joined: May 2006
#9
2009-05-25, 10:19 PM
I've been thinking about this script and I suggest moving killall gaya from the bottom ie
Code:
...
killall gaya
if [ -f /etc/mvpmc/mvpmcx2 ]
then
    echo "mvmcx2 is loaded";
else
    killall lircd
    mkdir /etc/mvpmc
    mount -t cifs //#####/mvpmc /etc/mvpmc -o username=guest
    cp /etc/mvpmc/lircd1 /usr/bin
    lircd1
....
fi
sh -c /etc/mvpmc/startmeup 2>/dev/null >/dev/null &
exit 0;
Martin
trummel
Offline

Senior Member

Posts: 276
Threads: 34
Joined: Oct 2008
#10
2009-05-27, 10:23 PM
Martin, I think there might be a hiccup in the lirc code for the standard PCH remote. The 6 key returns 5 after your lircd1 is installed. The Alpha values on that key are wrong as well.

Server: Ci5 2500k, 3GB, Windows Server 2012, nPVR 3.5.7. 2xWinTV-DVB-T USB, 1xWinTV-DVB-T PCI, 2 x BlackGold DVB-T, 1xPCTV290E and 1xPCTV460E on Astra 28.2 E.
clients: RPI2, Acer R3700, PCH-A110, NUC, 3xSamsung Smart TV
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (9): 1 2 3 4 5 … 9 Next »
Jump to page 


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

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

Linear Mode
Threaded Mode