Thread: [vdrpylib-devel] Same work here
Status: Alpha
Brought to you by:
rshortt
From: Sebastien L. <seb...@gm...> - 2004-12-15 15:21:51
|
Hi all, Just a little mail to say that I've done almost the same job as you : make vdrpylib work with VDR1.3.x. I was updating all the headers to write all the changes I've done wher I had a look on vdrpylib.sf.net. Well I should have looked at vdrpylib.sf.net before ...... the package here is almost like mine. I should have been lazy this time. I'll check the difference between the cvs and my code and I'll post on this list. Bye and thanks for the job. Vlad |
From: Rob S. <ro...@in...> - 2004-12-15 15:35:16
|
Sebastien Lucas wrote: > Hi all, Hi! > Just a little mail to say that I've done almost the same job as you : > make vdrpylib work with VDR1.3.x. I was updating all the headers to > write all the changes I've done wher I had a look on vdrpylib.sf.net. > > Well I should have looked at vdrpylib.sf.net before ...... the package > here is almost like mine. DOH! Oh well. > I'll check the difference between the cvs and my code and I'll post on > this list. That would be great! I have some uncommited code but its mostly indentation cleanups. I am currently also looking at timers and adding to the interface there. > Bye and thanks for the job. Thanks for your interest. BTW, what kind of application are you using / writing to use vdrpylib? Just curious here. -Rob |
From: Sebastien L. <seb...@gm...> - 2004-12-15 16:07:44
|
On Wed, 15 Dec 2004 11:34:14 -0400, Rob Shortt <ro...@in...> wrote: > Sebastien Lucas wrote: > > Hi all, > > Hi! > > > > Just a little mail to say that I've done almost the same job as you : > > make vdrpylib work with VDR1.3.x. I was updating all the headers to > > write all the changes I've done wher I had a look on vdrpylib.sf.net. > > > > Well I should have looked at vdrpylib.sf.net before ...... the package > > here is almost like mine. > > DOH! Oh well. > Yes....... not very proud of it :D > > I'll check the difference between the cvs and my code and I'll post on > > this list. > > That would be great! I have some uncommited code but its mostly > indentation cleanups. I am currently also looking at timers and adding > to the interface there. I have enought motivation to work on it tonight, I'll post tomorrow. > > Bye and thanks for the job. > > Thanks for your interest. BTW, what kind of application are you using / > writing to use vdrpylib? Just curious here. I started a VDR client on my Xbox with XBMC (via Streamdev). Currently it can show live TV and EPG. But it's not ready to be shown ;). Vlad |
From: Thomas W. <tw...@us...> - 2004-12-15 16:24:42
|
Hi, Sebastien Lucas schrieb: >>>Well I should have looked at vdrpylib.sf.net before ...... the package >>>here is almost like mine. >>> >>> >>DOH! Oh well. >> >> >> > >Yes....... not very proud of it :D > > No worries. I'm pretty sure there are some things we can reuse and merge. Also it's great to have another user/developer. Btw, did you use the "original" telnetlib approach or plain socket communication? I'm curious because i have some trouble with the telnet stuff from time to time. This is especially true when i fetch larger amounts of data like the whole EPG, for example. > > > >>>I'll check the difference between the cvs and my code and I'll post on >>>this list. >>> >>> >>That would be great! I have some uncommited code but its mostly >>indentation cleanups. I am currently also looking at timers and adding >>to the interface there. >> >> Great! @Rob: sorry about the latest "out-of-time" phase here I'm pretty sure you know those issues which are common to all open source developers. :-) Greetings, -- Thomas Weber |
From: Sebastien L. <seb...@gm...> - 2004-12-15 16:39:12
|
On Wed, 15 Dec 2004 17:24:19 +0100, Thomas Weber <tw...@us...> wrote: > > Hi, > > Sebastien Lucas schrieb: > > >>>Well I should have looked at vdrpylib.sf.net before ...... the package > >>>here is almost like mine. > >>> > >>> > >>DOH! Oh well. > >> > >> > >> > > > >Yes....... not very proud of it :D > > > > > No worries. I'm pretty sure there are some things we can reuse and merge. > Also it's great to have another user/developer. > Btw, did you use the "original" telnetlib approach or plain socket > communication? > I'm curious because i have some trouble with the telnet stuff from time > to time. > This is especially true when i fetch larger amounts of data like the > whole EPG, for example. Yes I used the original Telnetlib approach. But I've had the same problems you have and I finally found a fix. I'll send svdrp.py tomorrow. Bye. |
From: Rob S. <ro...@in...> - 2004-12-15 16:50:44
|
Thomas Weber wrote: > No worries. I'm pretty sure there are some things we can reuse and merge. No doubt. > Also it's great to have another user/developer. Sure is! > Btw, did you use the "original" telnetlib approach or plain socket > communication? > I'm curious because i have some trouble with the telnet stuff from time > to time. > This is especially true when i fetch larger amounts of data like the > whole EPG, for example. The recent changes in PyEPG might make this more tolerable as our EPG is filled using VDR's periodicly using tv_grab -s vdr, therefore the guide is as fast as usual (heh, which still needs speedup work). > @Rob: sorry about the latest "out-of-time" phase here > I'm pretty sure you know those issues which are common to all open > source developers. :-) Yeah, sure do! Just take it easy though, your contributions are certainly appreciated. -Rob |
From: Rob S. <ro...@in...> - 2004-12-15 16:46:56
|
Sebastien Lucas wrote: > On Wed, 15 Dec 2004 11:34:14 -0400, Rob Shortt <ro...@in...> wrote: >>Thanks for your interest. BTW, what kind of application are you using / >>writing to use vdrpylib? Just curious here. > > I started a VDR client on my Xbox with XBMC (via Streamdev). Currently > it can show live TV and EPG. But it's not ready to be shown ;). That's kindof the same thing we've been doing with Freevo. Right now for live-tv I've been using vdr-xine or mplayer with streamdev. For recording I've been streaming from streamdev and soon to have a real interface with timers to get VDR doinf the recordings and compare the results. For the EPG I've added support to PyEPG (http://freevo.sourceforge.net/cgi-bin/freevo-2.0/SourceDoc/PyEPG - also maintained with Freevo but is a seperate library) for importing the VDR EPG. I can give some examples of its usage is you're interested. -Rob |