Re: [Freevo-devel] Movie error

2006-12-01 Thread Andre Henrique Campos
On 12/1/06, Jason Tackaberry <[EMAIL PROTECTED]> wrote: > I guess you mean you'll have _no_ problems? Seeing as you're not > redistributing it... > Yes, sorry. ;) Cheers, André - Take Surveys. Earn Cash. Influence the Futur

Re: [Freevo-devel] Movie error

2006-12-01 Thread Jason Tackaberry
On Fri, 2006-12-01 at 16:35 -0200, Andre Henrique Campos wrote: > It's being executed internally in the company. So, I think we'll have > problems with the GPL or lincencing at all. I guess you mean you'll have _no_ problems? Seeing as you're not redistributing it... > We will be happy to report

Re: [Freevo-devel] Movie error

2006-12-01 Thread Andre Henrique Campos
Hello, On 12/1/06, Dirk Meyer <[EMAIL PROTECTED]> wrote: > I wonder why people use kaa.canvas and other kaa modules. I don't mind > that you do, that is one reason why we created kaa and moved stuff out > of freevo, but it would be nice to know. Is it something similar to > Freevo? GPL or closed s

Re: [Freevo-devel] Movie error

2006-12-01 Thread Dirk Meyer
Jason Tackaberry wrote: > On Fri, 2006-12-01 at 18:10 +0100, Dirk Meyer wrote: >> 1. Several people sent patches, I don't know about all of >>them. Keeping track of this wasn't on my list that days. > > Did you mention them in the cvs log? Maybe, I did not check because of the other deps. >>

Re: [Freevo-devel] Movie error

2006-12-01 Thread Jason Tackaberry
On Fri, 2006-12-01 at 18:10 +0100, Dirk Meyer wrote: > 1. Several people sent patches, I don't know about all of >them. Keeping track of this wasn't on my list that days. Did you mention them in the cvs log? > 2. We use EyeD3 and libdvdread, both GPL. The cddb code is also copied >from a

Re: [Freevo-devel] Movie error

2006-12-01 Thread Dirk Meyer
Jason Tackaberry wrote: >> but maybe we want to use some information from kaa.metadata in the >> future which is GPL. Maybe the best way would be to move the movie >> stuff from canvas/candy to popcorn. > > I forget, why does kaa.metadata need to be GPL again? 1. Several people sent patches, I don

Re: [Freevo-devel] Movie error

2006-12-01 Thread Jason Tackaberry
On Fri, 2006-12-01 at 17:48 +0100, Dirk Meyer wrote: > I wonder why people use kaa.canvas and other kaa modules. I don't mind > that you do, that is one reason why we created kaa and moved stuff out > of freevo, but it would be nice to know. Is it something similar to > Freevo? GPL or closed source

Re: [Freevo-devel] Movie error

2006-12-01 Thread Dirk Meyer
"Andre Henrique Campos" wrote: > Hello all, > > The code below doesn't work. > > test.py > - > import kaa.canvas > > canvas = kaa.canvas.X11Canvas((640,480)) > canvas_movie = kaa.canvas.Movie() > canvas.add_child(canvas_movie) > movie = 'abc6.avi' > c

Re: [Freevo-devel] Movie error

2006-12-01 Thread Jason Tackaberry
On Fri, 2006-12-01 at 13:58 -0200, Andre Henrique Campos wrote: > The code below doesn't work. > > test.py > - > import kaa.canvas > > canvas = kaa.canvas.X11Canvas((640,480)) > canvas_movie = kaa.canvas.Movie() > canvas.add_child(canvas_movie) > mo

[Freevo-devel] Movie error

2006-12-01 Thread Andre Henrique Campos
Hello all, The code below doesn't work. test.py - import kaa.canvas canvas = kaa.canvas.X11Canvas((640,480)) canvas_movie = kaa.canvas.Movie() canvas.add_child(canvas_movie) movie = 'abc6.avi' canvas_movie.open(movie) canvas_movie.play() kaa.main()