NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public Developers v
« Previous 1 … 21 22 23 24 25 … 93 Next »
Live GBPVR CD/DVD/Thumb drive :D

 
  • 0 Vote(s) - 0 Average
Live GBPVR CD/DVD/Thumb drive :D
pBS
Offline

Posting Freak

Posts: 4,829
Threads: 182
Joined: Aug 2005
#21
2007-01-29, 10:50 PM
hmm,so do you just use ado to query using regular sql? i figured it would be the sqlite3.dll or something...is it relying on sqlite or windows for the temp stuff?
[tho it says that sqlite gets the temp from windows's docs n setts\user\local settings\temp] which doesn't seem to be working..]
i can compile a special sqlite.dll and change temp in there and include it if using that to access db..

if using ADO for db access and to select the temp dir, then i'll have to look into why it's not doing it right..

thanx for the help...so close...Big Grin
Hardware: HDHR Prime, HDPVR 1212, Raspberry pi2, VFD display w/LCDSmartie
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,945
Threads: 770
Joined: Nov 2003
#22
2007-01-30, 12:47 AM
pBS Wrote:hmmm,is there any way to set a pragma command for the database on opening?
seems the pragma command to store temps has to be used before each open of the database...so if i do it outside of gbpvr it doesn't effect gbpvr accesses...

it may be able to be changed within the database structure itself...
it says by default it's supposed to write the files to the userprofile's temp dir and i have that setup but it doesn't seem to be using it..
i'll try changing the actual database schema so see if i can't put them in current dir for all accesses...which shouldn't be a problem even for the other users of the db...
[all locks and journals and temps should be in same place for that db]

i think it's actually just the indices creation that is creating he problem...
Recordings comes up fine...all files/info are there and playable...
To be honest, I dont know anything about these low-level aspects of SQLite. I've not had to know about any of this for GB-PVR's use of SQLite.
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,945
Threads: 770
Joined: Nov 2003
#23
2007-01-30, 12:49 AM
Quote:hmm,so do you just use ado to query using regular sql?
Yes, via the SQLite provider from http://sqlite.phxsoftware.com/
pBS
Offline

Posting Freak

Posts: 4,829
Threads: 182
Joined: Aug 2005
#24
2007-01-30, 06:18 AM
ahhh,figured it was some other layer....that's where the answer is then...
cuz any db worth it's salt is gonna have configurable temp space...
but ya gotta know who's in charge..Smile
thanx that should do the trick...it's in their code that i'll find the temp stuff...

tho it usually is on a per-transaction basis, i may be able to set it via some variable or something globally...

obviously they aren't using same method as sqlite3.exe or dll...
[which defaults to the user's temp first and keeps looking thru others till it finds one it's sure is writable..]
never had a problem using the sqlite3.exe from cdrom, even writing..

otherwise the whole idea's hosed if it can't be changed from the systemroot without recoding gbpvr..[but i know it can if pragma set before transactions, but that might be messy to do before every transaction..]

oh and tvlistings works fine, but for some reason won't let me watch a show..lol how are they accessing the db successfully? and how is the recordings screen coming up if db access is't working?
i figured the guide would be the only thing working cuz i'd just be reading it..
must be indexes...

can i specify a different db provider?
nm, will see if i can't set the temp thing globally first..
Hardware: HDHR Prime, HDPVR 1212, Raspberry pi2, VFD display w/LCDSmartie
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,945
Threads: 770
Joined: Nov 2003
#25
2007-01-30, 06:22 AM
Quote:can i specify a different db provider?
Yes, the ADO connection strings etc are specified in the config.xml.
pBS
Offline

Posting Freak

Posts: 4,829
Threads: 182
Joined: Aug 2005
#26
2007-01-30, 01:26 PM
Never-Mind...geez i must be losin it...Big Grin it was just too small a temp/ram drive...
everything works now...even without ado support...as the dll you use is both ado factory provider and the sql exec, so nothing else needed..Smile

seems i need about twice the size of the database for temp space...it's probably using expanded data in the temp files, making them much larger when temp..

so silly me, it really was just actually 'out of space' lol Rolleyes

next i'll be checking if i can run it all from dvd itself, or a network load...

thanx for the help and sorry,next time i'll wait till my head bleeds the answer...lol

what format are the you-toob videos?
i have ffdshow installed, but may need other codecs in the list activated by default...

also, on a side note, i have ati mpeg decoder working great as "ATI MPEG Video Decoder" and performs ok, deinterlacing is perfect...
Hardware: HDHR Prime, HDPVR 1212, Raspberry pi2, VFD display w/LCDSmartie
pBS
Offline

Posting Freak

Posts: 4,829
Threads: 182
Joined: Aug 2005
#27
2007-01-30, 03:01 PM
hmmm, everything's working great....but no osd and the graph has 2 renderers...? and no skip/pause/etc. ability...Sad
i register the filters before starting gbpvr...and even tried unregistering the ms mpeg splitter also...no go..
the graph shows your filters, but apparently it's connecting video to one renderer, and your filters to another...!
of course i only see the one with video on it so i can't get to the other one..
only esc works to exit...[and up/dn to change channels]

any thoughts?

video looks great....btw...and pretty zippy chann. changes...Smile
Hardware: HDHR Prime, HDPVR 1212, Raspberry pi2, VFD display w/LCDSmartie
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,945
Threads: 770
Joined: Nov 2003
#28
2007-01-30, 04:11 PM
Quote:what format are the you-toob videos?
i have ffdshow installed, but may need other codecs in the list activated by default...
They downloaded as a .flv file, but converted to .mpg before playback.

Quote:hmmm, everything's working great....but no osd and the graph has 2 renderers...? and no skip/pause/etc. ability...
Zip and attach the logs and I'll take a look. A common cause of this is using the Cyberlink decoder with VMR, without adding the Cyberlink EnableVMR9=1 registry setting.
pBS
Offline

Posting Freak

Posts: 4,829
Threads: 182
Joined: Aug 2005
#29
2007-01-31, 09:30 AM
you toob is working....and the keys in video playback *are* working, just not the osd...maybe a transparency issue or cleartype possibly? i'll check to make sure transparency is't totally turned off or something...dx9 seems to be working fine..

other than that i'm running out of things to check...lol Big Grin

on a side note wow-factor...
i found out how to make the cdrom itself writable!
actually it's just a filecache but it works and makes X: drive[the cdrom] writable for temp stuff...lol
so i could actually run gbpvr from cdrom no problem...takes about 10% of ram and adds free space to the cdrom...

notice in the pic...:eek: muhahaha
Hardware: HDHR Prime, HDPVR 1212, Raspberry pi2, VFD display w/LCDSmartie
K.S.
Offline

Senior Member

Posts: 526
Threads: 12
Joined: Oct 2006
#30
2007-01-31, 09:46 AM
pBS Wrote:i found out how to make the cdrom itself writable!
actually it's just a filecache but it works and makes X: drive[the cdrom] writable for temp stuff...lol

wow, how did you do that?
sub Wrote:Yep, what he said.

curiosity killed the cat Big Grin
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (11): « Previous 1 2 3 4 5 … 11 Next »
Jump to page 


Possibly Related Threads…
Thread Author Replies Views Last Post
  What is being sent when using /live?channel=3.1 scJohn 2 2,124 2020-01-30, 04:51 PM
Last Post: sub
  TitanTv Remote Schedule For GBPVR UncleJohnsBand 51 35,893 2015-08-20, 05:11 PM
Last Post: sub
  Stopping Live TV Vitenka 15 7,112 2014-12-19, 07:33 PM
Last Post: Vitenka
  Stopping live tv mvallevand 3 2,485 2014-03-11, 04:19 AM
Last Post: mvallevand
  What causes a new tuner to be used services/live?channel= psycik 2 2,505 2014-02-04, 05:32 PM
Last Post: psycik
  Roku & GBPVR pvruser 16 12,064 2011-10-16, 08:31 PM
Last Post: pvruser
  (Yet Another) Rename Helper script for GBPVR & NPVR pvruser 2 2,929 2011-07-22, 01:27 AM
Last Post: pvruser
  Tracking Live TV status imilne 2 2,393 2011-07-13, 07:04 PM
Last Post: imilne
  some help on basic gbpvr plugin code Etacovda 12 5,130 2009-06-14, 08:24 PM
Last Post: Etacovda
  vlc as live TV Source theGressier 4 3,083 2008-09-13, 12:35 AM
Last Post: drlava

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

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

Linear Mode
Threaded Mode