NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Portal

Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 20,188
» Latest member: dromanas
» Forum threads: 65,378
» Forum posts: 602,186

Full Statistics

Online Users
There are currently 1438 online users.
» 1 Member(s) | 1431 Guest(s)
Applebot, Baidu, Bing, Facebook, Google, Yandex, sub

Latest Threads
Closed captioning in NPVR
Forum: Windows
Last Post: mvallevand
Yesterday, 12:25 PM
» Replies: 32
» Views: 3,665
More than one HDPVR to th...
Forum: Hardware
Last Post: mvallevand
2026-09-05, 04:51 PM
» Replies: 7
» Views: 236
New iOS/tvOS/macOS client...
Forum: NextPVR iOS and AppleTV Clients
Last Post: drvolks
2026-09-05, 01:00 PM
» Replies: 43
» Views: 6,373
actors producer director
Forum: Wishlist
Last Post: a1blues
2026-09-04, 09:20 PM
» Replies: 4
» Views: 178
Upcoming NextEnd addon an...
Forum: Add-ons (3rd party plugins, utilities and skins)
Last Post: mvallevand
2026-09-04, 01:00 AM
» Replies: 1
» Views: 197
HDHomeRun can't find tune...
Forum: Linux
Last Post: mvallevand
2026-09-01, 05:58 PM
» Replies: 1
» Views: 192
Can't upgrade from 6.1.1....
Forum: NextPVR Support
Last Post: blobbyguts
2026-08-31, 10:56 AM
» Replies: 1
» Views: 149
NextEnd and NFL Preseason
Forum: Windows
Last Post: mvallevand
2026-08-30, 03:13 PM
» Replies: 1
» Views: 185
New version problem with ...
Forum: Windows
Last Post: Swami
2026-08-30, 12:23 AM
» Replies: 47
» Views: 3,955
DVB-T scanning issue - fo...
Forum: Docker amd64
Last Post: mvallevand
2026-08-28, 08:36 AM
» Replies: 1
» Views: 226

 
  ParaLED with PCI based Parallel I/O
Posted by: LewE - 2010-06-22, 10:24 AM - Forum: Hardware - Replies (2)

It seems that ParaLED uses software that only works with parallel ports that are part of the motherboard. Unfortunately, my computer did not come with any serial or parallel port built into the motherboard. I had to add a PCI card that provides one parallel and two serial ports.

ParaLED, or more specifically, the combination of ParaLED and Inpout32.dll do not work with this type of parallel port, even if I change the port address. Has anyone come up with a solution to this problem?

Print this item

  Help with SQL query for querying recordings in NPVR.db3
Posted by: b00sfuk - 2010-06-22, 07:22 AM - Forum: Legacy (v4.x and earlier) - Replies (9)

Any SQL gurus out there? I need a bit of help please in completing an SQL query to retrieve the next pending & in-progress recordings from the new schema in the NPVR.db3 database.
Using GBPVRWAKE, postprocessing.bat & parallelprocessing.bat I pipe these into a text file so I can use LCDSmartie to display them on my iMON VFD. This means theat I can easily see if anything is recording or about to record and for example I don't then put the PC into standby if there is. Also when the PC is in standby it displays the time the PC will wake for its next recording. With GBPVR this function was provided by the GBPVRCli program (provided as part of the SlimmGBPVR utility); the auther has confirmed this is not planned to be updated for NPVR.

I've got this far modifying SQL that I've plagiarised from the forum (thanks pBS) which runs via the SQLITE3 command line utility .

Code:
REM pending 3 recordings "sqlite3.exe" -separator " -- " "npvr.db3" "SELECT name from SCHEDULED_RECORDING where status = '0' order by start_time limit 3;" > "C:\Users\Public\NPVR\EXTRAS\PendName.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 3;" > "C:\Users\Public\NPVR\EXTRAS\PendTime.txt" Rem IN-PROGRESS recordings (for upto three tuners) "sqlite3.exe" -separator " -- " "npvr.db3" "SELECT name from SCHEDULED_RECORDING where status = '1' order by start_time limit 3;" > "C:\Users\Public\NPVR\EXTRAS\ProgName.txt" "sqlite3.exe" -separator " -- " "npvr.db3" "SELECT strftime('%%H:%%M',end_time) from SCHEDULED_RECORDING where status = '1' order by start_time limit 3;" > "C:\Users\Public\NPVR\EXTRAS\ProgTime.txt" REM next pending recording for USBPORT file for display during standby "sqlite3.exe" -separator " -- " "npvr.db3" "SELECT name from SCHEDULED_RECORDING where status = '0' order by start_time limit 1;" > "C:\UTILS\LCDsmartie\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;" >> "C:\UTILS\LCDsmartie\USBPortExit.txt"
What I need a bit of help with please is:

1. The times returned for start/end time are an hour early. I assume this is as actual time (in UK) is currently BST but it is reporting GMT (or UMT).

2. I can get 'name', 'start_time' & 'end_time' but 'subtitle' is now only kept within an XML subfields structure in the 'event_details' field shown below. I can't see an easy way to get at just this.
Code:
<Event> <OID>752285</OID> <Title>Match of the Day</Title> <SubTitle>World Cup 2010</SubTitle> <Description>Colin Murray presents highlights of the day&apos;s three group matches, with all the reaction from England&apos;s clash with Algeria in Cape Town. The day&apos;s other Group C game sees the USA take on Slovenia in Johannesburg, while Germany meet Serbia in Group D.</Description> <ChannelOID>6864</ChannelOID> <StartTime>2010-06-18T21:00:00.0000000</StartTime> <EndTime>2010-06-18T21:30:00.0000000</EndTime> </Event>
Thanks

Print this item

  Where Is It?
Posted by: skycyclepilot - 2010-06-22, 06:13 AM - Forum: Legacy (v4.x and earlier) - Replies (2)

Sub, I hate to look stupid, but I'm really good at it - lots of practice...

Where do I download the beta?

Thanks...

Print this item

  Manual Recording
Posted by: johnburton - 2010-06-22, 04:48 AM - Forum: Legacy (v4.x and earlier) - Replies (1)

Congrats sub on NPVR. My HDPVR is recording beautifully. Smile
Can I assume you have yet to provide the facility to do a Manual Record.

Print this item

  Next MusicLibrary name
Posted by: mvallevand - 2010-06-22, 02:03 AM - Forum: Recording2, MusicLibrary2, SystemStatus Support - Replies (19)

It's seems NPVR 1.15 is all about changes, I am looking at a name change for MusicLibrary4 simply because the Default skin won't allow a name this long. Sub's Music Library is now just Music so MusicLibrary is an option but it might be confusing.

Any suggestions?

Martin

Print this item

  Volume Control?
Posted by: CWJTUCK - 2010-06-21, 09:21 PM - Forum: Legacy (v4.x and earlier) - Replies (1)

How does one control the volume? I can't find any documentation concerning any features?

Print this item

  Database locked error
Posted by: mark_lt - 2010-06-21, 09:10 PM - Forum: Legacy (v4.x and earlier) - Replies (4)

Hi,

Since I've started testing out the recordings I have noticed the recording menu itself has slowed right down. As of tonight, I am also getting a database locked error. Logs attached.

Only other dabbling I have been doing is to set up a postprocessing batch file to transcode to MP4.

What have I broken, and how on earth do I fix it!

Mark

Print this item

  Can't stop display of subtitle/closed caption
Posted by: yancym - 2010-06-21, 07:21 PM - Forum: Legacy (v4.x and earlier) - Replies (5)

When playing DVD videos that I've copied to my video library folder, the video plays fine, but it shows the closed caption/subitle. I can't get rid of it.

These are DVD's that I copied the main movie files using a DVD copy program.

Print this item

  Slight Stutter on SD Live
Posted by: soccerdad - 2010-06-21, 04:58 PM - Forum: Legacy (v4.x and earlier) - Replies (7)

When I watch live tv on an analog channel, there is a slight stutter. If I pause and play just for a partial second to build a buffer, then the stutter goes away. Is there a preplay delay type setting I can access? I did not see it in the config file.

Print this item

  EPG updates overlapping and overwriting
Posted by: chalkster99 - 2010-06-21, 12:46 PM - Forum: Legacy (v4.x and earlier) - Replies (59)

Im having issues with DVB EPG updates .. Im getting multiple entries for individual programs, that overlap - A LOT. So for example, I might get Ch 7 with a show running 1900 -2030. Then another entry in the guide with the same show running 1935 - 2030.. and so on.. The problem gets worse with the days updating.. Its affecting most, but not all channels, and only DVB EPG data. Any ideas? The aesthetics are horrific , sub would cry..

XMLTV updates (fm oztivo) are working fine - and Ive swung most channels back to this now for reliability, but I do like the seemingly more comprehensive data fm the stations.
Im in Adelaide, South Australia BTW.

Print this item

Pages (6435): « Previous 1 … 1958 1959 1960 1961 1962 … 6435 Next »
Jump to page 

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