NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public Add-ons (3rd party plugins, utilities and skins) Old Stuff (Legacy) Slimm GB-PVR and GBPVRcli v
1 2 3 4 Next »
Any plans for NPVR?

 
  • 0 Vote(s) - 0 Average
Any plans for NPVR?
b00sfuk
Offline

Senior Member

Posts: 319
Threads: 26
Joined: Mar 2005
#1
2010-06-15, 11:30 AM
Hi Mister Slimm, any plans for updating your utilities for NPVR or have you moved on (I read you no longer use GB-PVR)?
I think some of the tray icon function is now in NPVR but I'm particularly interested in GBPVRCli. If it is dead anybody know of an alternative way to get future recordings out of the database and into a text file.
thanks again.
Silverstone LC10M with iMON
Gigabyte 780G+4850e, AMD 6570
Blackgold BGT3620, Harmony 555 Remote
Win7 32-bit, SAF
JonnyCam
Offline

Posting Freak

Posts: 1,153
Threads: 87
Joined: Feb 2006
#2
2010-06-15, 02:14 PM
EWA can produce RSS feeds (well, it did in the PVRX2 version, sure that hasn't changed) and you can get those into text files (with a bit of poking)
Or depending on what you need them for, RSS may do the job, and you could point "your app" to the live feed, so no need for the files.

If there is not going to be a new version, that is.
"Shut up brain, or I'll stab you with a Q-Tip!"

--= Win7, C2D 2.93 GHz, ASUS 9400GT Silent, 2GB Ram, Few HDD's, 3TB unRAID server, Samsung 50" 1080p Plasma via HDMI, 40" 1080i LCD via VGA =-- * PVR2000 Analog PCI / Avermedia DVB-S PCI / Hauppauge 2200 DVB/Analog * PCH GBPVR Client * *BD-E6500 w/ NPVR client*
Mister Slimm
Offline

Senior Member

Posts: 437
Threads: 41
Joined: Nov 2005
#3
2010-06-16, 10:13 AM
At this time, it is not my intention to update for NPVR.

Thank you for your interest, though.
[SIZE="1"]Akasa Zen case, AMD Phenom II X3 720, 4.00Gb Ram, Sapphire ATI Radeon 4890, Terratec Terratec Cinergy 2400i Twin Digital Tuner, 1050Gb storage, Windows 7 Home Premium.
See my blog for releases, HD wallpapers, movie, game and anime reviews and more.[/SIZE]
b00sfuk
Offline

Senior Member

Posts: 319
Threads: 26
Joined: Mar 2005
#4
2010-06-16, 10:59 AM
Mister Slimm Wrote:At this time, it is not my intention to update for NPVR.

Thank you for your interest, though.

No problem, I'll find an alternative such as the possible RSS method mentioned. Thanks again though for the great utilities over the years.
Silverstone LC10M with iMON
Gigabyte 780G+4850e, AMD 6570
Blackgold BGT3620, Harmony 555 Remote
Win7 32-bit, SAF
b00sfuk
Offline

Senior Member

Posts: 319
Threads: 26
Joined: Mar 2005
#5
2010-06-17, 10:55 AM
Just to update in case it helps anybody else. I've replaced GBPVRcli in my setup for NPVR with SQLITE3 cli commands direct to the database. It was actually quite easy to do especially after cribbing some example syntax from an old post by user pBS. Using it to get pending/in-progress recordings into a text file for display with LCDSmartie on my LED display. Happy to share.
Silverstone LC10M with iMON
Gigabyte 780G+4850e, AMD 6570
Blackgold BGT3620, Harmony 555 Remote
Win7 32-bit, SAF
mila06
Offline

Member

Posts: 210
Threads: 47
Joined: Dec 2005
#6
2010-06-17, 11:39 AM
b00sfuk Wrote:Just to update in case it helps anybody else. I've replaced GBPVRcli in my setup for NPVR with SQLITE3 cli commands direct to the database. It was actually quite easy to do especially after cribbing some example syntax from an old post by user pBS. Using it to get pending/in-progress recordings into a text file for display with LCDSmartie on my LED display. Happy to share.

Please do!!

How do you display it on your IMON? Are you using the plugin? I'm using the new version of the IMON software(i think i have to because it is V2 of the IMON hardware i have?!?), and i can't figure out howto eg. display the text from a txt-file...
Michael Larsen

[SIZE="1"]HTPC:
Asus AMD 785G- M4A785TD-M/EVO, ATI 4200 HDMI,
AMD Phenom II X2 550 - 3.0 GHz,
2 GB Ram, 500 GB Seagate Barracuda
Terratec Cinergy C PCI HD, NVidia PureVideo, Cyberlink
Windows 7 ULT, NPvr v1.5.33[/SIZE]
Website
b00sfuk
Offline

Senior Member

Posts: 319
Threads: 26
Joined: Mar 2005
#7
2010-06-17, 12:41 PM
mila06 Wrote:Please do!!

How do you display it on your IMON? Are you using the plugin? I'm using the new version of the IMON software(i think i have to because it is V2 of the IMON hardware i have?!?), and i can't figure out howto eg. display the text from a txt-file...

I use iMON as well and most of what I did is documented in this old post: http://forums.nextpvr.com/showthread.php?t=32818
I do not use the plugin as I don't want to display what is playing. I use only LCDSmartie (with imon frontiview software set to plug-in mode) to display on the imon VFD.

The SQL I'm testing now for NPVR (and similar will work with GBPVR) is (with thanks to pBS):
Code:
REM pending 2 recordings

"sqlite3.exe" -separator " -- " "npvr.db3" "SELECT name from SCHEDULED_RECORDING where status = '0' order by start_time limit 2;" > "D:\TEMP\SQL\Prog.log"

"sqlite3.exe" -separator " -- " "npvr.db3" "SELECT strftime('%%d-%%m %%H:%%M',start_time) from SCHEDULED_RECORDING where status = '0' order by start_time limit 2;" > "D:\TEMP\SQL\Time.log"

Rem IN-PROGRESS
"sqlite3.exe" -separator " -- " "npvr.db3" "SELECT name from SCHEDULED_RECORDING where status = '1' order by start_time limit 3;" > "D:\TEMP\SQL\InProg.log"

"sqlite3.exe" -separator " -- " "npvr.db3" "SELECT strftime('%%H:%%M',end_time) from SCHEDULED_RECORDING where status = '1' order by start_time limit 3;" > "D:\TEMP\SQL\InTime.log"


REM pending 1 recording for USBPORTEXIT for imon standby message

"sqlite3.exe" -separator " -- " "npvr.db3" "SELECT name from SCHEDULED_RECORDING where status = '0' order by start_time limit 1;" > "D:\TEMP\SQL\USBPORTEXIT.txt"

"sqlite3.exe" -separator " -- " "npvr.db3" "SELECT strftime('%%d-%%m %%H:%%M',start_time) from SCHEDULED_RECORDING where status = '0' order by start_time limit 1;" >> "D:\TEMP\SQL\USBPORTEXIT.txt"
Silverstone LC10M with iMON
Gigabyte 780G+4850e, AMD 6570
Blackgold BGT3620, Harmony 555 Remote
Win7 32-bit, SAF
mila06
Offline

Member

Posts: 210
Threads: 47
Joined: Dec 2005
#8
2010-06-17, 01:56 PM
Thanks!!!

That's it.. The new IMON hasn't got the plugin-mode :-(
Michael Larsen

[SIZE="1"]HTPC:
Asus AMD 785G- M4A785TD-M/EVO, ATI 4200 HDMI,
AMD Phenom II X2 550 - 3.0 GHz,
2 GB Ram, 500 GB Seagate Barracuda
Terratec Cinergy C PCI HD, NVidia PureVideo, Cyberlink
Windows 7 ULT, NPvr v1.5.33[/SIZE]
Website
b00sfuk
Offline

Senior Member

Posts: 319
Threads: 26
Joined: Mar 2005
#9
2010-06-17, 02:09 PM
mila06 Wrote:Thanks!!!

That's it.. The new IMON hasn't got the plugin-mode :-(

Are you sure, right click imon icon, then imon utilities, then frontview. I have "plug-in" as rightmost selectable icon
Silverstone LC10M with iMON
Gigabyte 780G+4850e, AMD 6570
Blackgold BGT3620, Harmony 555 Remote
Win7 32-bit, SAF
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)



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

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

Linear Mode
Threaded Mode