NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public Developers v
« Previous 1 … 45 46 47 48 49 … 93 Next »
Enhanced Web Admin

Thread Closed 
 
  • 0 Vote(s) - 0 Average
Enhanced Web Admin
cubsfan
Offline

Member

Posts: 96
Threads: 2
Joined: Sep 2005
#451
2005-10-05, 02:21 AM (This post was last modified: 2005-10-05, 05:10 AM by cubsfan.)
What ports on a router need to be opened up to allow the video streams to play through? Also, the streaming video does not appear to work with files that have been transcoded to XVid only with the MPEG files, would it be possible to add the ability to stream the XVid files too?
normanr
Offline

Posting Freak

Posts: 855
Threads: 3
Joined: Dec 2004
#452
2005-10-05, 09:33 AM
Rafbo Wrote:So basically, to watch Live TV, this is what needs to happen:
- gbpvr sends all live tv video to a file which doesn't change names when the channel is changed,

- Enhanced Web Admin has a button that launches the live tv buffer file (which should be easy since the filename doesn't change) using the same .m3u functionality as used for playing recordings,

- AND there needs to be an option to "watch" as well as "record" when clicking on the tv guide in Enhanced Web Admin, so you can change channels that way. Don't know how it would tell gbpvr to change channels though, but I'm sure there must be some way to do it...
1. mmm, this is tricky, and it might actually be easier to create a playlist that has a url that automatically picks the currently playing file. This way you could put your playlist on repeat with a single entry, and when the show finishes, it automatically gets the new file.

2. Yup, I'm not sure where's best to plug this in. Probably on the Statistics page. I'm not sure how easy it will be to detect the filename of the currently recording file.

3. Tricky eh, not sure if there's an easy way to change channels. This might involve adding some backend calls.

cubsfan Wrote:What ports on a router need to be opened up to allow the video streams to play through? Also, the streaming video does not appear to work with files that have been transcoded to XVid only with the MPEG files, would it be possible to add the ability to stream the XVid files too?
The same port that you use to access the web interface - it'll stream _any_ kind of file. I think what you want is the ability to stream files that are not in the database as being recorded, right? UncleJohnsBand and I may have something up our sleeves for you on this one.
cubsfan
Offline

Member

Posts: 96
Threads: 2
Joined: Sep 2005
#453
2005-10-05, 02:20 PM
Quote:The same port that you use to access the web interface - it'll stream _any_ kind of file. I think what you want is the ability to stream files that are not in the database as being recorded, right? UncleJohnsBand and I may have something up our sleeves for you on this one.

Yes and No. Yes that would be cool, but no because once the mpeg file is transcoded using the builting transcoding process I believe the filename in the database gets updated with the .avi file. So the filename in the database will have a .avi extension instead of .mpg. Also, currently I guess if you are using the default panel on the main menu of the GBPVR application Sub has it display what file is currently transcoding and the percent complete. It would be cool to have this display on the statistics page as well.
normanr
Offline

Posting Freak

Posts: 855
Threads: 3
Joined: Dec 2004
#454
2005-10-05, 02:33 PM
cubsfan Wrote:Yes and No. Yes that would be cool, but no because once the mpeg file is transcoded using the builting transcoding process I believe the filename in the database gets updated with the .avi file. So the filename in the database will have a .avi extension instead of .mpg. Also, currently I guess if you are using the default panel on the main menu of the GBPVR application Sub has it display what file is currently transcoding and the percent complete. It would be cool to have this display on the statistics page as well.
The 'filename' field in the database is used to pick which file to stream, so if after transcoding that points to the .avi file, then the .avi file will be streamed. I believe that the m3u file's mime type is audio/mpegurl, but I could be wrong. The mime type of the resulting download is read from the server's registry, so there's no hard coding there.

I'm not sure how to read the transcoding status, maybe sub can fill us in on that one?
cubsfan
Offline

Member

Posts: 96
Threads: 2
Joined: Sep 2005
#455
2005-10-05, 04:06 PM
Any idea on when all of the season recording options will be available in the web interface?
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,765
Threads: 769
Joined: Nov 2003
#456
2005-10-05, 04:08 PM
Quote:I'm not sure how to read the transcoding status, maybe sub can fill us in on that one?
There is no API for picking up this info at this stage. Its just stored in the database TRANSCODE_QUEUE table.
cubsfan
Offline

Member

Posts: 96
Threads: 2
Joined: Sep 2005
#457
2005-10-05, 04:21 PM
sub Wrote:There is no API for picking up this info at this stage. Its just stored in the database TRANSCODE_QUEUE table.

Sub we just need to look for something in that table with a status of 1? Also, it seems the percent complete goes over 100 how is that determined?
normanr
Offline

Posting Freak

Posts: 855
Threads: 3
Joined: Dec 2004
#458
2005-10-05, 05:02 PM
is there anyway to kick off a manual transcoding session? or is the best just to set the time range to always, and it'll happen as soon as the service starts?
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,765
Threads: 769
Joined: Nov 2003
#459
2005-10-05, 05:11 PM
Quote:Sub we just need to look for something in that table with a status of 1?
Yes.

Quote:Also, it seems the percent complete goes over 100 how is that determined?
The percentage is derived by asking directshow for the duration and the current position. I have seem some occurrances of it reporting the current position is past the duration, so doing the math it ends up past 100%. I'll put in a "if progress > 100% then progress = 100%" so it does look so strange.
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,765
Threads: 769
Joined: Nov 2003
#460
2005-10-05, 05:12 PM
normanr Wrote:is there anyway to kick off a manual transcoding session? or is the best just to set the time range to always, and it'll happen as soon as the service starts?
It runs GBPVRConvert.exe, but its probably best to just add a record to the transcode queue table.
« Next Oldest | Next Newest »

Users browsing this thread: 9 Guest(s)

Pages (161): « Previous 1 … 44 45 46 47 48 … 161 Next »
Jump to page 


Possibly Related Threads…
Thread Author Replies Views Last Post
  SQLite GUI-based admin & query building? Braklet 3 1,958 2006-10-30, 02:45 PM
Last Post: Braklet
  Recordings made via the Web Admin interface are at the wrong resolution! mmatheny 9 3,080 2006-08-04, 06:34 PM
Last Post: HtV
  Enhanced Web Admin Hobson 3 2,380 2006-06-09, 07:47 AM
Last Post: Hobson
  Enhanced Web Admin (Time Slice error?) SFX Group 2 1,830 2006-02-04, 08:10 PM
Last Post: normanr
  Web Admin suggested feature babybob 0 1,153 2006-01-31, 10:12 PM
Last Post: babybob
  Enhanced Web Admin Request psycik 1 1,338 2005-10-10, 08:16 PM
Last Post: UncleJohnsBand
  reoccuring + web admin aegisx 0 1,174 2005-01-25, 10:57 PM
Last Post: aegisx
  GBPVR Web Admin KingArgyle 8 4,075 2004-12-15, 03:01 AM
Last Post: KingArgyle

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

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

Linear Mode
Threaded Mode