Re: [Freevo-devel] DVD detection broke from RC1 -> RC2

2007-01-05 Thread Nigel Sim
Spot on. mminfo showed nothing for /dev/dvd, so I installed libdvdread, and rebuilt the packages, and all was working. Print statements reveal that video.fxd_database = {} This problem was caused by the libdvdread and libdvdcss not being installed before installing mmpython or now kaa.metadata.

Re: [Freevo-devel] freevo 1.7rc2 / web server : unable to download a movie if stored in the Recorded TV dir

2007-01-05 Thread Chandan Pitta
Yes it is the problem of trailing slash. Yes I do know about s[-1] as you expected but it would be slightly round about way. Thank you too for doing all the reiterations. If I can just nail down the image scaling thing we are in good shape. I will probably not be able to get to it until a couple of

Re: [Freevo-devel] freevo-1.7svn /web server : some UTF-8 troubles with firefox.

2007-01-05 Thread Duncan Webb
Pascal Schirrmann wrote: > Duncan Webb a écrit : >> What you need to do here is use wget --http-user=xxx --http-password=yyy >> "http://link/to/page"; then check that the correct encoding has been >> reported in the header, I think that you will find that it is utf-8. >> Then look for the incorrect

Re: [Freevo-devel] freevo 1.7rc2 / web server : unable to download a movie if stored in the Recorded TV dir

2007-01-05 Thread Duncan Webb
Chandan Pitta wrote: > This patch should fix the issue seen by Pascal. I also did some minor > clean up in webserver. Is this the problem of a trailing slash? if so the last character of a string can be accessed by s[-1], but you know this. Thanks again Chandan, patch applied to rel-1 at r8936 T

Re: [Freevo-devel] freevo-1.7rc2 / idlebar.encoding plugin : trouble with 'self.idlebar.free_space'

2007-01-05 Thread Duncan Webb
Pascal Schirrmann wrote: > Duncan Webb a écrit : >> By default the idlebar is installed, have you removed it? > > Actually, I didn't do anything of this sort. In the local_conf.py, the line > plugin.activate("idlebar") > was commented out, but a > freevo plugins -l > told me that the plugin is a

Re: [Freevo-devel] freevo-1.7svn /web server : some UTF-8 troubles with firefox.

2007-01-05 Thread Pascal Schirrmann
Duncan Webb a écrit : > What you need to do here is use wget --http-user=xxx --http-password=yyy > "http://link/to/page"; then check that the correct encoding has been > reported in the header, I think that you will find that it is utf-8. > Then look for the incorrect text and see if it is a unicod

Re: [Freevo-devel] [Freevo-cvslog] Kaa r2356 - trunk/imlib2/src

2007-01-05 Thread Jason Tackaberry
On Fri, 2007-01-05 at 19:27 +0100, Duncan Webb wrote: > You may have noticed that I added the size calculation function to > freevo-1 in util.fileops.py to perform this aspect calculation as the > calculation is quite general purpose and is useful for the webserver > when it opens up the full image

Re: [Freevo-devel] freevo-1.7rc2 / idlebar.encoding plugin : trouble with 'self.idlebar.free_space'

2007-01-05 Thread Pascal Schirrmann
Duncan Webb a écrit : > By default the idlebar is installed, have you removed it? > Actually, I didn't do anything of this sort. In the local_conf.py, the line plugin.activate("idlebar") was commented out, but a freevo plugins -l told me that the plugin is activated. > The draw function of the i

Re: [Freevo-devel] [Freevo-cvslog] Kaa r2356 - trunk/imlib2/src

2007-01-05 Thread Duncan Webb
Dirk Meyer wrote: > Jason Tackaberry wrote: >> Author: tack >> Date: Fri Jan 5 17:52:46 2007 >> New Revision: 2356 >> >> Modified: >>trunk/imlib2/src/image.py >> >> Log: >> Make scale_preserve_aspect work when target aspect is different from >> source aspect. > > A bug in kaa.imlib2? > NO

Re: [Freevo-devel] Kaa r2356 - trunk/imlib2/src

2007-01-05 Thread Jason Tackaberry
On Fri, 2007-01-05 at 19:03 +0100, Dirk Meyer wrote: > I hoped so. But that is one reason why it should be part of 1.7 so we > get better testing. I think you just had a good feeling about it because it's one of the only kaa modules that's well documented. :)

Re: [Freevo-devel] Kaa r2356 - trunk/imlib2/src

2007-01-05 Thread Dirk Meyer
Jason Tackaberry wrote: > On Fri, 2007-01-05 at 19:00 +0100, Dirk Meyer wrote: >> A bug in kaa.imlib2? >> NO > > Why, were you under the misguided impression that it was flawless? :) I hoped so. But that is one reason why it should be part of

Re: [Freevo-devel] Kaa r2356 - trunk/imlib2/src

2007-01-05 Thread Jason Tackaberry
On Fri, 2007-01-05 at 19:00 +0100, Dirk Meyer wrote: > A bug in kaa.imlib2? > NO Why, were you under the misguided impression that it was flawless? :) - Take Surveys. E

Re: [Freevo-devel] Kaa r2356 - trunk/imlib2/src

2007-01-05 Thread Dirk Meyer
Jason Tackaberry wrote: > Author: tack > Date: Fri Jan 5 17:52:46 2007 > New Revision: 2356 > > Modified: >trunk/imlib2/src/image.py > > Log: > Make scale_preserve_aspect work when target aspect is different from > source aspect. A bug in kaa.imlib2? NO

Re: [Freevo-devel] kaa.imlib2 scale_preserve_aspect bug

2007-01-05 Thread Dirk Meyer
Jason Tackaberry wrote: >> Jason have you noticed that: >> >> image = kaa.imlib2.open(filename) >> thumb = image.scale_preserve_aspect(config.WWW_IMAGE_THUMBNAIL_SIZE) >> thumb.save(thumb_path) >> >> doesn't work when config.WWW_IMAGE_THUMBNAIL_SIZE is not square, ie >> (100, 200) > > Indeed. Fi

Re: [Freevo-devel] Kaa r2354 - trunk/base/src

2007-01-05 Thread Dirk Meyer
Jason Tackaberry wrote: > On Fri, 2007-01-05 at 17:42 +0100, Dirk Meyer wrote: >> > The problem with this is there's no way to specify "foo_bar-baz" >> >> No, you can have everything. But in a config file foo-bar looks >> bettwen than foo_bar (IMHO). But you can't access config.foo-bar, so >> we n

[Freevo-devel] kaa.imlib2 scale_preserve_aspect bug (was: freevo 1.7rc2 / web server: unable to download a movie if stored in the Recorded TV dir)

2007-01-05 Thread Jason Tackaberry
> Jason have you noticed that: > > image = kaa.imlib2.open(filename) > thumb = image.scale_preserve_aspect(config.WWW_IMAGE_THUMBNAIL_SIZE) > thumb.save(thumb_path) > > doesn't work when config.WWW_IMAGE_THUMBNAIL_SIZE is not square, ie > (100, 200) Indeed. Fixed in svn. Cheers, Jason. P.S. h

Re: [Freevo-devel] Original image size not showing

2007-01-05 Thread Duncan Webb
Chandan Pitta wrote: > On 1/5/07, Duncan Webb <[EMAIL PROTECTED]> wrote: >> Chandan Pitta wrote: >>> What happened to the images? The pop-up window shows only scaled >>> image. I see that the javascript for openfoto has changed and is >>> causing the browser to scale the image. Can someone take a l

Re: [Freevo-devel] freevo-1.7rc2 / idlebar.encoding plugin : trouble with 'self.idlebar.free_space'

2007-01-05 Thread Duncan Webb
Pascal Schirrmann wrote: > Hi, > > I tried to activate the idlebar.encoding plugin (BTW, freevo is becoming > very very GREAT :-) :-) :-) thanks to you all folks ! ) > > After activating the plugin, freevo did crash on start , on line 192 of > plugins/idlebar/encoding.py > The crash told me tha

Re: [Freevo-devel] Original image size not showing

2007-01-05 Thread Chandan Pitta
On 1/5/07, Duncan Webb <[EMAIL PROTECTED]> wrote: > Chandan Pitta wrote: > > What happened to the images? The pop-up window shows only scaled > > image. I see that the javascript for openfoto has changed and is > > causing the browser to scale the image. Can someone take a look at it. > > Is it par

Re: [Freevo-devel] freevo-1.7svn /web server : some UTF-8 troubles with firefox.

2007-01-05 Thread Duncan Webb
Pascal Schirrmann wrote: > Hi, > > Using the web server from freevo, if a file contains an UTF-8 char, then > the display is good in the main screen (for instance in the Recorded TV > screen, if the file is in this dir. > Clicking on the filename, the UTF-8 file are badly interpreted with > fir

Re: [Freevo-devel] Original image size not showing

2007-01-05 Thread Duncan Webb
Chandan Pitta wrote: > What happened to the images? The pop-up window shows only scaled > image. I see that the javascript for openfoto has changed and is > causing the browser to scale the image. Can someone take a look at it. > Is it part of a larger fix that is coming later? I had to commit Wou

Re: [Freevo-devel] DVD detection broke from RC1 -> RC2

2007-01-05 Thread Duncan Webb
Nigel Sim wrote: > I've cleaned out the site-packages, and I've removed mmpython. I get the > same issue on a clean system. > > I do get the following error: > > Exception in thread Thread-2: > Traceback (most recent call last): > File "threading.py", line 442, in __bootstrap > self.run() >

Re: [Freevo-devel] Evas MPEG Canvas

2007-01-05 Thread Jason Tackaberry
On Fri, 2007-01-05 at 09:47 -0700, Chandan Pitta wrote: > You probably have heard this from several people, but I should say wow > kaa is cool. It's always nice to hear it though. Very motivating. :) > I was thinking how you were able make all those effect. Most of the effects are simple time

Re: [Freevo-devel] Kaa r2354 - trunk/base/src

2007-01-05 Thread Jason Tackaberry
On Fri, 2007-01-05 at 17:42 +0100, Dirk Meyer wrote: > > The problem with this is there's no way to specify "foo_bar-baz" > > No, you can have everything. But in a config file foo-bar looks > bettwen than foo_bar (IMHO). But you can't access config.foo-bar, so > we need this. But doesn't this mea

Re: [Freevo-devel] Evas MPEG Canvas

2007-01-05 Thread Chandan Pitta
Hi Jason, You probably have heard this from several people, but I should say wow kaa is cool. I was thinking how you were able make all those effect. Now I see that all the heavy lifting is done by animation.py and menu.py is nice and small. Since kaa.canvas will be deprecated, I will look at kaa.

Re: [Freevo-devel] Kaa r2354 - trunk/base/src

2007-01-05 Thread Dirk Meyer
Jason Tackaberry wrote: > On Fri, 2007-01-05 at 17:13 +0100, Dirk Meyer wrote: >> Log: >> translate _ to - if needed > > The problem with this is there's no way to specify "foo_bar-baz" No, you can have everything. But in a config file foo-bar looks bettwen than foo_bar (IMHO). But you can't acces

Re: [Freevo-devel] [Freevo-cvslog] Kaa r2354 - trunk/base/src

2007-01-05 Thread Jason Tackaberry
On Fri, 2007-01-05 at 17:13 +0100, Dirk Meyer wrote: > Log: > translate _ to - if needed The problem with this is there's no way to specify "foo_bar-baz" - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge

Re: [Freevo-devel] Evas MPEG Canvas

2007-01-05 Thread Jason Tackaberry
On Fri, 2007-01-05 at 08:37 -0700, Chandan Pitta wrote: > Do you still have the code that you used to demo kaa-menu? I was > looking at the kaa modules lately and would like to see how you did Indeed. The code is in kaa svn, under kaa/canvas/test/animation/menu.py. See http://freevo.org/kaa for

Re: [Freevo-devel] Evas MPEG Canvas

2007-01-05 Thread Chandan Pitta
Hello Jason, Do you still have the code that you used to demo kaa-menu? I was looking at the kaa modules lately and would like to see how you did what you did. It is splendid, almost MCE like or even better. If you can please send me the code it will be very helpful. I usually like to learn by see

[Freevo-devel] freevo-1.7rc2 / idlebar.encoding plugin : trouble with 'self.idlebar.free_space'

2007-01-05 Thread Pascal Schirrmann
Hi, I tried to activate the idlebar.encoding plugin (BTW, freevo is becoming very very GREAT :-) :-) :-) thanks to you all folks ! ) After activating the plugin, freevo did crash on start , on line 192 of plugins/idlebar/encoding.py The crash told me that self.idlebar.free_space doesn't exist.

[Freevo-devel] freevo-1.7svn /web server : some UTF-8 troubles with firefox.

2007-01-05 Thread Pascal Schirrmann
Hi, Using the web server from freevo, if a file contains an UTF-8 char, then the display is good in the main screen (for instance in the Recorded TV screen, if the file is in this dir. Clicking on the filename, the UTF-8 file are badly interpreted with firefox (1.5.0.8 on Linux, and 2.0.1 on Wi

[Freevo-devel] freevo 1.7rc2 / audio CD extraction : trouble with 2 cd drives.

2007-01-05 Thread Pascal Schirrmann
Hi, I just did some Audio CD extraction test this morning (In France :-) ) My test bed has two CD Drives : A DVD burner is in /dev/hdc and a CD burner is in /dev/hdd (two IDE drives). I put my audio CD in the second one, can listen to the music, audio track information, all fine. When I starte