[Freevo-users] Poll : Log Level

2008-12-10 Thread Publicy
Sorry for spamming these mailing list

but I have several bugs / tuning to make freevo my perfect HTPC software


These thread is about about the log level you use because I have noticed 
that if I put :
LOGGING = logging.DEBUG
LOGGING_RECORDSERVER = logging.DEBUG
DEBUG = 9

as it was in my 1.7.9 version the debug file explode over 15Go of log in 
4 day 3 hour by day of freeevo running.

So How do you tune this to have sufficient information but reasonnable 
file size.

subsidiary question do you use logrotate for freevo log, in yes case 
what is your config ?

Thanks

Yoann



--
SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
The future of the web can't happen without you.  Join us at MIX09 to help
pave the way to the Next Web now. Learn more and register at
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] How to go directly to TV-gudie?

2008-12-10 Thread Jonathan Isom
On Wed, Dec 10, 2008 at 2:15 PM, Martin Beck <[EMAIL PROTECTED]> wrote:
> I'd like it to happen when I start freevo. Can I do a start scipt with
> that event?

Have a look at the autostart plugin then.

$ freevo plugins -i autostart
Name: autostart
Type: DaemonPlugin
File: /usr/lib64/python2.5/site-packages/freevo/plugins/autostart.py

Description:

The autostart plugin allows you to define an action that will be called when
the user do not interact in the first few seconds.  With this it is possible to
define a default action e.g. starting radio if there is no other activity.

To activate the autostart plugin add to local_conf.py::

plugin.activate('autostart')
AUTOSTART_EVENTS = (
'MENU_DOWN', 'MENU_DOWN', 'MENU_SELECT', 'MENU_SELECT',
)


Plugin configuration variables:
---
AUTOSTART_EVENTS: list of events to send to freevo at start up
Default: []

AUTOSTART_TIMEOUT: Numbers of seconds to time out if there is no action
Default: 5


The plugin is not activated in the current setting


> --- Jonathan Isom <[EMAIL PROTECTED]> skrev:
>
>> On Wed, Dec 10, 2008 at 9:58 AM, Martin Beck <[EMAIL PROTECTED]>
>> wrote:
>> > How can I go directly to TV-guide? Is it possible?
>> > Cheers
>>
>> set MENU_GOTO_TVGUIDE to the event you want.  Works in svn,  Don't
>> know
>> about releases.
>>
>> >
>> >  __
>> > Ta semester! - sök efter resor hos Kelkoo.
>> > Jämför pris på flygbiljetter och hotellrum här:
>> >
>> http://www.kelkoo.se/c-169901-resor-biljetter.html?partnerId=96914052
>> >
>> >
>>
> --
>> > SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas,
>> Nevada.
>> > The future of the web can't happen without you.  Join us at MIX09
>> to help
>> > pave the way to the Next Web now. Learn more and register at
>> >
>>
> http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
>> > ___
>> > Freevo-users mailing list
>> > Freevo-users@lists.sourceforge.net
>> > https://lists.sourceforge.net/lists/listinfo/freevo-users
>> >
>>
>>
> --
>> SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas,
>> Nevada.
>> The future of the web can't happen without you.  Join us at MIX09 to
>> help
>> pave the way to the Next Web now. Learn more and register at
>>
> http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
>> ___
>> Freevo-users mailing list
>> Freevo-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/freevo-users
>>
>
>
>
>  ___
> Sök efter kärleken!
> Hitta din tvillingsjäl på Yahoo! Dejting: 
> http://ad.doubleclick.net/clk;185753627;24584539;x?http://se.meetic.yahoo.net/index.php?mtcmk=148783
>
> --
> SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
> The future of the web can't happen without you.  Join us at MIX09 to help
> pave the way to the Next Web now. Learn more and register at
> http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
> ___
> Freevo-users mailing list
> Freevo-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/freevo-users
>

--
SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
The future of the web can't happen without you.  Join us at MIX09 to help
pave the way to the Next Web now. Learn more and register at
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] LastFM plugin events

2008-12-10 Thread Publicy
 Hello,

after reading "[Freevo-users] lastfm plugin questions" post I tried to 
use lastFM2 plugin, it seems to works fine for the reading (freevo 1.8.3)

But I can't skip, love or ban the current track.

I tried the following keys (on my remote) as described in plugin 
information :
| RIGHT - skip song
| 1 - send to lastfm LOVE song
| 9 - send to lastfm BAN song



So I decided to read the plugin code and here is the section wich deals 
with events :


elif event == 'PLAYLIST_NEXT':
self.skip()
return True
elif event == 'LANG': # Love
self.ban()
return True
elif event == 'SUBTITLE': # bAn
self.love()
return True



So it seem that the keys has changed between lastFM and lastFM2, below 
the lastFm source code :


config.EVENTS['audio']['RIGHT'] = Event(FUNCTION_CALL, 
arg=self.skip)
config.EVENTS['audio']['1'] = Event(FUNCTION_CALL, arg=self.love)
config.EVENTS['audio']['9'] = Event(FUNCTION_CALL, arg=self.ban)



As we can see also the comment on lastFm2 are also wrong (# Love ...   
self.ban()).


Can you confirm these fact (I'me not a python developer) ?

What are LANG and SUBTITLE events, they are not defined in audio 
context, I tryed to add thes mapping in my local_conf but I had an error :

EVENTS['audio']['BLUE'] = Event(SUBTITLE)
EVENTS['audio']['RED'] = Event(LANG)

I also add these one

EVENTS['audio']['SKIPFWD'] = Event(PLAYLIST_NEXT)

no error but nothing happened, here is the logs :


2008-12-10 21:14:58,663 DEBUGdetach.py (88): 
_event_handler(event=PLAYLIST_NEXT)
2008-12-10 21:14:58,665 DEBUGdetachbar.py (119): 
_event_handler(event=PLAYLIST_NEXT)
2008-12-10 21:14:58,666 DEBUGmain.py (273): handling event PLAYLIST_NEXT
2008-12-10 21:14:58,668 DEBUG__init__.py (135): 
PluginInterface.eventhandler(event=PLAYLIST_NEXT: , 
menuw=None)
2008-12-10 21:14:58,669 DEBUGmain.py (291): no eventhandler for 
event PLAYLIST_NEXT
2008-12-10 21:14:58,674 DEBUGrc.py (597): 
EventHandler.key_event_mapper(key='SKIPFWD')
2008-12-10 21:14:58,675 DEBUGrc.py (587): 
EventHandler.post_event(event='PLAYLIST_NEXT')
2008-12-10 21:14:58,677 DEBUGlastfm.py (265): refresh()



Can you help me to deal with those events ?

Thanks
Yoann





--
SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
The future of the web can't happen without you.  Join us at MIX09 to help
pave the way to the Next Web now. Learn more and register at
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] How to go directly to TV-gudie?

2008-12-10 Thread Martin Beck
I'd like it to happen when I start freevo. Can I do a start scipt with
that event?

--- Jonathan Isom <[EMAIL PROTECTED]> skrev:

> On Wed, Dec 10, 2008 at 9:58 AM, Martin Beck <[EMAIL PROTECTED]>
> wrote:
> > How can I go directly to TV-guide? Is it possible?
> > Cheers
> 
> set MENU_GOTO_TVGUIDE to the event you want.  Works in svn,  Don't
> know
> about releases.
> 
> >
> >  __
> > Ta semester! - sök efter resor hos Kelkoo.
> > Jämför pris på flygbiljetter och hotellrum här:
> >
> http://www.kelkoo.se/c-169901-resor-biljetter.html?partnerId=96914052
> >
> >
>
--
> > SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas,
> Nevada.
> > The future of the web can't happen without you.  Join us at MIX09
> to help
> > pave the way to the Next Web now. Learn more and register at
> >
>
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
> > ___
> > Freevo-users mailing list
> > Freevo-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/freevo-users
> >
> 
>
--
> SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas,
> Nevada.
> The future of the web can't happen without you.  Join us at MIX09 to
> help
> pave the way to the Next Web now. Learn more and register at
>
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
> ___
> Freevo-users mailing list
> Freevo-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/freevo-users
> 



  ___
Sök efter kärleken!
Hitta din tvillingsjäl på Yahoo! Dejting: 
http://ad.doubleclick.net/clk;185753627;24584539;x?http://se.meetic.yahoo.net/index.php?mtcmk=148783

--
SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
The future of the web can't happen without you.  Join us at MIX09 to help
pave the way to the Next Web now. Learn more and register at
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] How to go directly to TV-gudie?

2008-12-10 Thread Jonathan Isom
On Wed, Dec 10, 2008 at 9:58 AM, Martin Beck <[EMAIL PROTECTED]> wrote:
> How can I go directly to TV-guide? Is it possible?
> Cheers

set MENU_GOTO_TVGUIDE to the event you want.  Works in svn,  Don't know
about releases.

>
>  __
> Ta semester! - sök efter resor hos Kelkoo.
> Jämför pris på flygbiljetter och hotellrum här:
> http://www.kelkoo.se/c-169901-resor-biljetter.html?partnerId=96914052
>
> --
> SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
> The future of the web can't happen without you.  Join us at MIX09 to help
> pave the way to the Next Web now. Learn more and register at
> http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
> ___
> Freevo-users mailing list
> Freevo-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/freevo-users
>

--
SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
The future of the web can't happen without you.  Join us at MIX09 to help
pave the way to the Next Web now. Learn more and register at
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] How to go directly to TV-gudie?

2008-12-10 Thread Martin Beck
How can I go directly to TV-guide? Is it possible?
Cheers


  __
Ta semester! - sök efter resor hos Kelkoo.
Jämför pris på flygbiljetter och hotellrum här:
http://www.kelkoo.se/c-169901-resor-biljetter.html?partnerId=96914052

--
SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
The future of the web can't happen without you.  Join us at MIX09 to help
pave the way to the Next Web now. Learn more and register at
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] New Piren release is availbale!

2008-12-10 Thread davide

Thanks a lot!

//Davide

On Tue, 09 Dec 2008 20:47:17 +, John Molohan <[EMAIL PROTECTED]>
wrote:
> Davide Lucchesi wrote:
>> Hi all,
>> just a short note to let you know that Piren, the Freevo-Centric, Debian
> based
>> live distribution, is available for download from http://www.piren.org/
>>
>> It would be beautiful to have a link on the Freevo website, since I
> think it's
>> the more updated Freevo live-cd available. :)
>>
> Done :)
> 
> John
> 
>
--
> SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas,
> Nevada.
> The future of the web can't happen without you.  Join us at MIX09 to help
> pave the way to the Next Web now. Learn more and register at
>
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
> ___
> Freevo-users mailing list
> Freevo-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/freevo-users


--
SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
The future of the web can't happen without you.  Join us at MIX09 to help
pave the way to the Next Web now. Learn more and register at
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
___
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users