Re: [Freevo-devel] kaa.epg design questions

2007-02-25 Thread Tanja


Dirk Meyer schrieb:
> I get some parse errors. It looks like libxml2 can't resolve stuff
> like ü. The strange part is that it is defined in the dtd but it
> looks like the dtd is not loaded. Can you send me a list of all your
> XML* and SGML* environment variables?

Sorry, what do you mean? Which environment variables?
How do I check them? My bash environment does not contain any variables 
with XML or SGML...

> 
> BTW, my files end with qy for some reason, I changed that to q[a-z] in
> your parser. I will check it in svn later. Thanks again.
> 

Strange, thus your files are not the same as mine?


Tanja


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Freevo-devel mailing list
Freevo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-devel


Re: [Freevo-devel] Fading feedback was: [Fwd: DVD Playback]

2007-02-25 Thread Jason Tackaberry
On Sun, 2007-02-25 at 21:27 +0100, Dirk Meyer wrote:
> the time when not watching a video everywhere we use black. So when
> someone finds a way to clear the overlay to black after xine is done,
> I'm happy to switch overlay to black.

You can't use black for the colorkey for reasons I posted last month (in
response to your popcorn commit to switch mplayer's colorkey to black).


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Freevo-devel mailing list
Freevo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-devel


Re: [Freevo-devel] Fading feedback was: [Fwd: DVD Playback]

2007-02-25 Thread mike lewis
On 2/26/07, Dirk Meyer <[EMAIL PROTECTED]> wrote:
> Ryan Roth wrote:
> > Dirk Meyer wrote:
> >> "mike lewis" wrote:
> >>
> >>> Hi Dischi.
> >>>
> >>> Noticed in frrevo2 that thwn you select a music item to play, it will
> >>> 'fade' to the music player window.
> >>>
> >>> Now sure to what extent the fading capabilities are..  But this is what I 
> >>> see:
> >>>
> >>> Select play item, screen fades to black.
> >>> Player "jumps" (aka no fade) back to blue screen based movie player.
> >>>
> >>> some possible suggestions are:
> >>> i) to "pre-load" the player window and fade to the player window, not to 
> >>> black.
> >>> ii) remove fade to on some items, like when we know for sure the
> >>> windows are the same colout.
> >>> iii) fade to black and then fade out of black.. I like this idea..
> >>> Give you the feeling you've done something..
> >>>
> >>
> >> I just added some code and deactivated again. It fades to the
> >> colorkey. This looks very very bad (fading to blue or green). What
> >> would be a good default colorkey close to black?
> >>
> >>
> >> Dischi
> > Black is close to black :)
> >  I really think black is a good color to fade to, feels very movie
> > theater-ish
>
> I tried that, it had a bad side-effect. For some reason xine is not
> clearing the overlay when finished. This results in a strange image
> before playback starts and it would result in seeing this image all
> the time when not watching a video everywhere we use black. So when
> someone finds a way to clear the overlay to black after xine is done,
> I'm happy to switch overlay to black.
>
I'm happy to sniff this one out over time ;-).  But first I need to
understand the kaa.xine a bit better.

Whats the chance of an overview of how kaa.xine works?  This would
help in two ways:
i) Sad coders like myself might have a chance at fixing things, one
area of interest is a re-write of the vdr-xine plugin (only temporary
until we've got live pause channel change on record start going).
ii) Keen coders might find it easier to do things like write other "players".

Mick
>
> Dischi
>
> --
> This signature is temporarily under construction
>
> -
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net's Techsay panel and you'll get the chance to share your
> opinions on IT & business topics through brief surveys-and earn cash
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> ___
> Freevo-devel mailing list
> Freevo-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/freevo-devel
>
>
>

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Freevo-devel mailing list
Freevo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-devel


Re: [Freevo-devel] freevo 1.7svn / freevo makelogos doesn't work

2007-02-25 Thread Pascal Schirrmann
Duncan Webb a écrit :
> Not surprised when looking at the code, I've applied this patch which
> should sort out this no message problem.
> Index: src/helpers/makelogos.py
> ===
> --- src/helpers/makelogos.py(revision 9266)
> +++ src/helpers/makelogos.py(working copy)
> @@ -62,6 +62,6 @@
>  output_file = config.TV_LOGOS + '/' + channel + '.png'
>  try:
>  img.save(output_file)
> -except IOError:
> -pass
> +except IOError, e:
> +print e
>
>   
Again, thanks for this one !
> I really don't like using /tmp for this type of data as it is really not
> temporary data, so what I do is make a directory /var/lib/freevo and set
> the following in local_config.py
> # Overlay data in internal format for CDs, DVDs, images, etc
> OVERLAY_DIR = '/var/lib/freevo/overlay'
> # Recording schedule and favourites
> TV_RECORD_SCHEDULE = '/var/lib/freevo/record_schedule.xml'
> # TV channel logos directory
> TV_LOGOS = '/var/lib/freevo/logos'
> # XMLTV EPG file.
> XMLTV_FILE = '/var/lib/freevo/TV.xml'
>
>   
I didn't know the meaning of half these variables :-( soo sad.

But in fact, my trouble was coming from the fact that I probably one 
time started freevo as root.

So, I did like you said, but I did this change on the (newly created) 
/var/lib/freevo :

chown freevo:freevo /var/lib/freevo
chmod 6775 /var/lib/freevo

So, if all is going well, root should no more do any harm to my dir :-)

Thanks,

-- 
Pascal Schirrmann


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Freevo-devel mailing list
Freevo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-devel


Re: [Freevo-devel] Fading feedback was: [Fwd: DVD Playback]

2007-02-25 Thread Dirk Meyer
Ryan Roth wrote:
> Dirk Meyer wrote:
>> "mike lewis" wrote:
>>   
>>> Hi Dischi.
>>>
>>> Noticed in frrevo2 that thwn you select a music item to play, it will
>>> 'fade' to the music player window.
>>>
>>> Now sure to what extent the fading capabilities are..  But this is what I 
>>> see:
>>>
>>> Select play item, screen fades to black.
>>> Player "jumps" (aka no fade) back to blue screen based movie player.
>>>
>>> some possible suggestions are:
>>> i) to "pre-load" the player window and fade to the player window, not to 
>>> black.
>>> ii) remove fade to on some items, like when we know for sure the
>>> windows are the same colout.
>>> iii) fade to black and then fade out of black.. I like this idea..
>>> Give you the feeling you've done something..
>>> 
>>
>> I just added some code and deactivated again. It fades to the
>> colorkey. This looks very very bad (fading to blue or green). What
>> would be a good default colorkey close to black?
>>
>>
>> Dischi
> Black is close to black :)
>  I really think black is a good color to fade to, feels very movie 
> theater-ish

I tried that, it had a bad side-effect. For some reason xine is not
clearing the overlay when finished. This results in a strange image
before playback starts and it would result in seeing this image all
the time when not watching a video everywhere we use black. So when
someone finds a way to clear the overlay to black after xine is done,
I'm happy to switch overlay to black.


Dischi

-- 
This signature is temporarily under construction


pgpoLHBNMdJ6e.pgp
Description: PGP signature
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Freevo-devel mailing list
Freevo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-devel


Re: [Freevo-devel] Fading feedback was: [Fwd: DVD Playback]

2007-02-25 Thread Ryan Roth


Dirk Meyer wrote:
> "mike lewis" wrote:
>   
>> Hi Dischi.
>>
>> Noticed in frrevo2 that thwn you select a music item to play, it will
>> 'fade' to the music player window.
>>
>> Now sure to what extent the fading capabilities are..  But this is what I 
>> see:
>>
>> Select play item, screen fades to black.
>> Player "jumps" (aka no fade) back to blue screen based movie player.
>>
>> some possible suggestions are:
>> i) to "pre-load" the player window and fade to the player window, not to 
>> black.
>> ii) remove fade to on some items, like when we know for sure the
>> windows are the same colout.
>> iii) fade to black and then fade out of black.. I like this idea..
>> Give you the feeling you've done something..
>> 
>
> I just added some code and deactivated again. It fades to the
> colorkey. This looks very very bad (fading to blue or green). What
> would be a good default colorkey close to black?
>
>
> Dischi
Black is close to black :)
 I really think black is a good color to fade to, feels very movie 
theater-ish

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Freevo-devel mailing list
Freevo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-devel


Re: [Freevo-devel] Fading feedback was: [Fwd: DVD Playback]

2007-02-25 Thread Dirk Meyer
"mike lewis" wrote:
> Hi Dischi.
>
> Noticed in frrevo2 that thwn you select a music item to play, it will
> 'fade' to the music player window.
>
> Now sure to what extent the fading capabilities are..  But this is what I see:
>
> Select play item, screen fades to black.
> Player "jumps" (aka no fade) back to blue screen based movie player.
>
> some possible suggestions are:
> i) to "pre-load" the player window and fade to the player window, not to 
> black.
> ii) remove fade to on some items, like when we know for sure the
> windows are the same colout.
> iii) fade to black and then fade out of black.. I like this idea..
> Give you the feeling you've done something..

I just added some code and deactivated again. It fades to the
colorkey. This looks very very bad (fading to blue or green). What
would be a good default colorkey close to black?


Dischi

-- 
Half of the troubles of this life can be traced to saying yes too
quickly and not saying no soon enough. - Josh Billings


pgpYU20Ofm74q.pgp
Description: PGP signature
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Freevo-devel mailing list
Freevo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-devel


[Freevo-devel] [ANNOUNCE] Freevo-1.7.0 Release

2007-02-25 Thread Duncan Webb
Hi all

Today, freevo-1.7.0 has been released, there has been a great deal of activity 
since freevo-1.7.0-rc2 with still more exciting new features. The statistics 
show 145 additions, 162 changes and 40 removals, since 1.7.0-rc2, much more 
than I expected :).

First and most importantly, I know that I have said this before *BUT* a really 
big thank you to all of you who have contributed and it is thanks to these 
contributions that freevo has been moving so quickly over the last few months, 
just in case your interested the "ever growing" list is in the Docs/CREDITS.

You will also need to download the latest kaa.base-0.1.2, kaa.metadata-0.6.0 
and kaa.imlib2-0.2.0 packages from the sourceforge pages. There has been no 
significant changes to the kaa modules that affect the operation of 
freevo-1.7.0 since RC2 (Release Candidate 2).

Some of the new features that have been added since RC2
* New Music Player Daemon (mpd) plug-in
* New record server commercial detection and removal
* New record server duplicate recording detection
* New PS3 support on Yellow Dog Linux 

* New buttonbar plug-in that displays buttons on the bottom of the screen
* New screensaver plug-in that allows easy writing of screen savers

I don't want to bore you with the complete list of changes as it is really 
quite long, you can see them all from the wiki pages: 
http://freevo.sourceforge.net/cgi-bin/doc/ChangeLog

To use the buttonbar you need to copy the ./contrib/examples/*_BB.fxd to 
/usr/share/skins/main/ as these buttonbar uses space at the bottom of the 
screen.

I'm continually surprised by the diversity and flexibility of Freevo and how 
*you* use Freevo. Who could have envisaged that Freevo would become so much 
more than a Home Theatre PC when the original version was written. 
Congratulations to you all for choosing Freevo for you HTPC.

Many thanks again
Duncan




-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Freevo-devel mailing list
Freevo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-devel


Re: [Freevo-devel] freevo 1.7 svn / idlebar encoding plugin : still trouble with the fonts !

2007-02-25 Thread Duncan Webb
Pascal Schirrmann wrote:
> Hi,
> 
> I really had the feeling that everything was OK with the font s of the 
> idlebar.encoding plugin.
> But no !
> 
> Now I did find the trick :
> 
> If I start freevo with the blurr skin configured, then, even if I change 
> the skin during my freevo session, I never can see the font.

I'm sure I don't understand quite why this is a problem for you, as I
use blurr and always see the font.

What I really don't understand is when diskfree shows the text with a
shadow and encodings doesn't even when selecting the same skin font. I'm
sure I'll find this sometime.

> If I start freevo with the mediaportal plugin configured, then I can see 
> the idlebar.encoding plugin text, even if I select the blurr plugin.
> Last days, I only used mediaportal skin, so I didn't see this trouble...

Well, I'll not the problem and maybe will find it one day

Duncan


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Freevo-devel mailing list
Freevo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-devel


Re: [Freevo-devel] freevo 1.7 svn / freeboxtv plugin

2007-02-25 Thread Duncan Webb
Pascal Schirrmann wrote:
> Duncan Webb a écrit :
>   
>>> 2. Video sometimes lags behind the audio (only in full-screen mode).
>>> VLC does not have this issue playing full-screen.
>>> 
>>>   
>> There is a plug-in from Valère JEANTET RAMOS for vlc and freeboxtv, now
>> added to svn. They have not been tested so I don't know if they work.
>>
>>   
>> 
> Hi,
>
> I was very interrested by this plugin !
>
> Ok this plugin works (at least on my configuration). Some comments :
> freevo plugins -i freeboxtv give some mixed frech/english comments.
> More annoying, one comment is false. There is written :
> "to activate it, put this line :
> plugin.activate("freebox TV", level=45)"
>
> Yous should read :
> "to activate it, put this line :
> plugin.activate("freeboxtv", level=45)"
>   

Now updated in svn, thanks for the info.

> Apart that, I think that this plugin need some improvements : It give 
> the whole list of the nearly 200 channels in alphabetical order. There 
> no way to do a selection list, or to order the channel in a different way.
> Also, if you press the 'E' kay, you have access to a menu with only non 
> working option.
> I didn't find a way to 'tweak' the vlc behavior : for instance, I need 
> to set my rtp port to go trough my firewall, and had to change the 
> video/plugin/vlc.py directly to do that.
> Last but not least, no way to record a channel !
> Still, this plugin exists, and that much better than nothing.

I was undecided about adding these plug-ins, then I thought when they
are in a release then people will get them to work for their environment
and with luck send in the patches. :)

There were some images included in the original PS3 email but I couldn't
post these to the list as they were too bit.

Duncan


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Freevo-devel mailing list
Freevo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-devel


Re: [Freevo-devel] freevo 1.7svn / freevo makelogos doesn't work

2007-02-25 Thread Duncan Webb
Pascal Schirrmann wrote:
> Duncan Webb a écrit :
>> I've just checked in makelogos.py, r9259.
>>
>> Can you please give it a test, I don't use xmltv any more so it's not so
>> easy for me to test it.
>>   
> Hi Duncan,
> 
> Again, many thanks for your work !
> 
> With your new version, I didn't have any more error messages, but at 
> first run, I didn't also have logos for my TV channels.
> Some digging further, I discovered a subdirectory in /tmp/freevo 
> (/tmp/freevo/xmltv/logos) who was owned by root. So my freevo user could 
> not update the icons.
> Sadly, I didn't see any error messages about that.

Not surprised when looking at the code, I've applied this patch which
should sort out this no message problem.
Index: src/helpers/makelogos.py
===
--- src/helpers/makelogos.py(revision 9266)
+++ src/helpers/makelogos.py(working copy)
@@ -62,6 +62,6 @@
 output_file = config.TV_LOGOS + '/' + channel + '.png'
 try:
 img.save(output_file)
-except IOError:
-pass
+except IOError, e:
+print e


> Now, after removing (as root !) the whole /tmp/freevo tree, I started 
> the makelogos again, and that's great ! Every logos are here.
> 

I really don't like using /tmp for this type of data as it is really not
temporary data, so what I do is make a directory /var/lib/freevo and set
the following in local_config.py
# Overlay data in internal format for CDs, DVDs, images, etc
OVERLAY_DIR = '/var/lib/freevo/overlay'
# Recording schedule and favourites
TV_RECORD_SCHEDULE = '/var/lib/freevo/record_schedule.xml'
# TV channel logos directory
TV_LOGOS = '/var/lib/freevo/logos'
# XMLTV EPG file.
XMLTV_FILE = '/var/lib/freevo/TV.xml'

Duncan


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Freevo-devel mailing list
Freevo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-devel