Re: [Freevo-users] Freevo 1.6 cdbackup/coversearch issue

2006-11-15 Thread Duncan Webb
Jim Duda wrote:
> Duncan,
> 
> I tried your CD_RIP_PN_PREF, however, I get the same results.
> 
> Using DEBUG=2, all I get is:
> WARNING: Unknown CD, cover searching is disabled
> 
> My applicable local_conf settings are:
> plugin.activate('audio.coversearch', args=('',) )
> 
> # AUDIO CDROM ripping
> AUDIO_BACKUP_DIR = '/media/music'
> CD_RIP_PN_PREF = '%(artist)s/%(album)s/%(song)s'
> CDPAR_CMD = 'cdparanoia'
> LAME_CMD = 'lame'
> CD_RIP_LAME_OPTS = '-h'
> OGGENC_CMD = 'oggenc'
> CD_RIP_OGG_OPTS = '-q 3'
> plugin.activate('audio.cdbackup')
> 
> I tried digging into the code in 1.5.4, but I never had any
> success.  I'm good with perl, but not so good with python.
> I'm learning ... I will try again.

This means that you are getting an attribute error, attached is a patch
that will print out more information about the cause.

You can try applying this patch and let me know the results. You should
have artist and album for a directory and
have artist and title for an audio cd.

Trouble is it works for me every time.

Duncan

> 
> Duncan Webb wrote:
>> Jim Duda wrote:
>>> If I rip an audio CDROM using the cdbackup plugin, I cannot use the 
>>> coversearch to fetch an album cover.  For some reason I don't get the 
>>> coversearch menu item.  If I use some other method for ripping the 
>>> CDROM, then I get a coversearch menu item.  There is something odd about 
>>> how cdbackup creates the ripped directory, but I haven't been able to 
>>> figure it out.
>>>
>>> I had the same problem in release 1.5.4.
>>>
>>> Has anyone else seen this issue?
>> Yes I have, sometimes there is a menu item and sometime there isn't.
>>
>> Have you tried setting DEBUG=2 in your local_conf.py?
>>
>> I have done a quick scan of the code and it says that it requires an
>> artist and an album. If you would like to to turn on this debug level it
>> may explain why the coversearch is disabled for a particular item.
>>
>> The only thing I can think of is that your using an odd CD_RIP_PN_PREF
>> setting, I use this one and it seems to work.
>>
>> CD_RIP_PN_PREF = '%(artist)s/%(album)s/%(track)s - %(song)s'
>>
>> 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
> 
> 
> -
> 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-users mailing list
> Freevo-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/freevo-users
> 

Index: src/audio/plugins/coversearch.py
===
--- src/audio/plugins/coversearch.py(revision 8569)
+++ src/audio/plugins/coversearch.py(working copy)
@@ -137,6 +137,23 @@
 return []
 
 if item.type in ('audio', 'audiocd', 'dir'):
+if config.DEBUG > 0:
+print 'coversearch'
+print 'type=\"%s\"' % item.type
+print 'name=\"%s\"' % item['name']
+try:
+print 'artist=\"%s\"' % item.getattr('artist')
+except:
+print 'NO artist'
+try:
+print 'album=\"%s\"' % item.getattr('album')
+except:
+print 'NO album'
+try:
+print 'title=\"%s\"' % item.getattr('title')
+except:
+print 'NO title'
+
 try:
 # use title for audicds and album for normal data
 if self.item.getattr('artist') and \
-
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-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Anybody good at graphics?

2006-11-15 Thread Duncan Webb
Evan Hisey wrote:
> Duncan-
>   Ah, so what you wanted is prettier graphic of similiar size. I 'll
> see what I can do. Do you still need the extra color block below the
> bar? 

No they shouldn't be there.

> Or should I just play with things and see what I can get ?

There's plenty of freedom, the only criteria is that one image can be
overlaid on the base image as a rectangle, with a bit of space below for
the text. So it can work left to right, top to bottom, etc.

Thanks again
Duncan

> 
> Evan
> 
> On 11/15/06, Duncan Webb <[EMAIL PROTECTED]> wrote:
>> Evan Hisey wrote:
>>> Duncan-
>>>  I take it you just need the bar to be different colors? I have
>>> attached pngs for the four states. Lete me knwo if this is what you
>>> wanted.
>> Not quite, really wanted a better graphic. The bar is okay and works,
>> just looks a bit poor.
>>
>> But thanks anyway.
>> Duncan
>>
>>> Evan
>>>
>>> On 11/15/06, Duncan Webb <[EMAIL PROTECTED]> wrote:
 Hi all,

 Is any body here good at graphics?

 I thought I would update Tanja's great plug-in diskfree so that it would
 show a bar, similar to volume plug-in, of the amount of disk space that
 is free, instead of the pie chart.

 Attached is the updated plug-in and the original photoshop graphic.

 It's a bit hard-coded, but this can be changed, when the free space is
 less than 8GB then it displays a red bar, when it is less than 20GB it
 displays a orange bar otherwise it displays a green bar on top of a grey
 bar. I thought of using percentages but recordings tend to use disk
 space so I thought that gigabytes are better.

 If someone would like to do so graphics, I would be absolutely delighted.

 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-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Freevo 1.6 cdbackup/coversearch issue

2006-11-15 Thread Jim Duda
Duncan,

I tried your CD_RIP_PN_PREF, however, I get the same results.

Using DEBUG=2, all I get is:
WARNING: Unknown CD, cover searching is disabled

My applicable local_conf settings are:
plugin.activate('audio.coversearch', args=('',) )

# AUDIO CDROM ripping
AUDIO_BACKUP_DIR = '/media/music'
CD_RIP_PN_PREF = '%(artist)s/%(album)s/%(song)s'
CDPAR_CMD = 'cdparanoia'
LAME_CMD = 'lame'
CD_RIP_LAME_OPTS = '-h'
OGGENC_CMD = 'oggenc'
CD_RIP_OGG_OPTS = '-q 3'
plugin.activate('audio.cdbackup')

I tried digging into the code in 1.5.4, but I never had any
success.  I'm good with perl, but not so good with python.
I'm learning ... I will try again.

Jim




Duncan Webb wrote:
> Jim Duda wrote:
>> If I rip an audio CDROM using the cdbackup plugin, I cannot use the 
>> coversearch to fetch an album cover.  For some reason I don't get the 
>> coversearch menu item.  If I use some other method for ripping the 
>> CDROM, then I get a coversearch menu item.  There is something odd about 
>> how cdbackup creates the ripped directory, but I haven't been able to 
>> figure it out.
>>
>> I had the same problem in release 1.5.4.
>>
>> Has anyone else seen this issue?
> 
> Yes I have, sometimes there is a menu item and sometime there isn't.
> 
> Have you tried setting DEBUG=2 in your local_conf.py?
> 
> I have done a quick scan of the code and it says that it requires an
> artist and an album. If you would like to to turn on this debug level it
> may explain why the coversearch is disabled for a particular item.
> 
> The only thing I can think of is that your using an odd CD_RIP_PN_PREF
> setting, I use this one and it seems to work.
> 
> CD_RIP_PN_PREF = '%(artist)s/%(album)s/%(track)s - %(song)s'
> 
> 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


-
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-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] 1.6 and LCD

2006-11-15 Thread Jason Tackaberry
On Wed, 2006-11-15 at 22:49 +0100, Dirk Meyer wrote:
> That is what I wanted to say :)
> The current code is not LGPL, so no kaa.display. But I need a rewrite
> anyway and will put it as LGPL into kaa.display.

Sorry, I misread you.  I thought you said you would rewrite it _for_
kaa.base, rather than _using_ kaa.base.  Ok, makes sense. :)


-
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-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] 1.6 and LCD

2006-11-15 Thread Dirk Meyer
Jason Tackaberry wrote:
> On Wed, 2006-11-15 at 16:06 +0100, Dirk Meyer wrote:
>> It is GPL, kaa.display should stay LGPL. Looking at the code, it is a
>> simple wrapper for some basic lcdproc calls. I guess I will rewrite it
>> using kaa.base (notifier) and make it LGPL.
>
> If you're going to rewrite it and can license it under LGPL, why not put
> it in kaa.display?

That is what I wanted to say :)
The current code is not LGPL, so no kaa.display. But I need a rewrite
anyway and will put it as LGPL into kaa.display.

Dischi

-- 
Linux vs. Windows is a no-WIN situation.


pgp7WPiHIuEXX.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-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] 1.6 and LCD

2006-11-15 Thread Jason Tackaberry
On Wed, 2006-11-15 at 16:06 +0100, Dirk Meyer wrote:
> It is GPL, kaa.display should stay LGPL. Looking at the code, it is a
> simple wrapper for some basic lcdproc calls. I guess I will rewrite it
> using kaa.base (notifier) and make it LGPL.

If you're going to rewrite it and can license it under LGPL, why not put
it in kaa.display?


-
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-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Anybody good at graphics?

2006-11-15 Thread Evan Hisey
Duncan-
  Ah, so what you wanted is prettier graphic of similiar size. I 'll
see what I can do. Do you still need the extra color block below the
bar? Or should I just play with things and see what I can get ?

Evan

On 11/15/06, Duncan Webb <[EMAIL PROTECTED]> wrote:
> Evan Hisey wrote:
> > Duncan-
> >  I take it you just need the bar to be different colors? I have
> > attached pngs for the four states. Lete me knwo if this is what you
> > wanted.
>
> Not quite, really wanted a better graphic. The bar is okay and works,
> just looks a bit poor.
>
> But thanks anyway.
> Duncan
>
> >
> > Evan
> >
> > On 11/15/06, Duncan Webb <[EMAIL PROTECTED]> wrote:
> >> Hi all,
> >>
> >> Is any body here good at graphics?
> >>
> >> I thought I would update Tanja's great plug-in diskfree so that it would
> >> show a bar, similar to volume plug-in, of the amount of disk space that
> >> is free, instead of the pie chart.
> >>
> >> Attached is the updated plug-in and the original photoshop graphic.
> >>
> >> It's a bit hard-coded, but this can be changed, when the free space is
> >> less than 8GB then it displays a red bar, when it is less than 20GB it
> >> displays a orange bar otherwise it displays a green bar on top of a grey
> >> bar. I thought of using percentages but recordings tend to use disk
> >> space so I thought that gigabytes are better.
> >>
> >> If someone would like to do so graphics, I would be absolutely delighted.
> >>
> >> 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-users mailing list
> Freevo-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/freevo-users
>

-
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-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Anybody good at graphics?

2006-11-15 Thread Duncan Webb
Evan Hisey wrote:
> Duncan-
>  I take it you just need the bar to be different colors? I have
> attached pngs for the four states. Lete me knwo if this is what you
> wanted.

Not quite, really wanted a better graphic. The bar is okay and works,
just looks a bit poor.

But thanks anyway.
Duncan

> 
> Evan
> 
> On 11/15/06, Duncan Webb <[EMAIL PROTECTED]> wrote:
>> Hi all,
>>
>> Is any body here good at graphics?
>>
>> I thought I would update Tanja's great plug-in diskfree so that it would
>> show a bar, similar to volume plug-in, of the amount of disk space that
>> is free, instead of the pie chart.
>>
>> Attached is the updated plug-in and the original photoshop graphic.
>>
>> It's a bit hard-coded, but this can be changed, when the free space is
>> less than 8GB then it displays a red bar, when it is less than 20GB it
>> displays a orange bar otherwise it displays a green bar on top of a grey
>> bar. I thought of using percentages but recordings tend to use disk
>> space so I thought that gigabytes are better.
>>
>> If someone would like to do so graphics, I would be absolutely delighted.
>>
>> 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-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Anybody good at graphics?

2006-11-15 Thread Evan Hisey

Duncan-
 I take it you just need the bar to be different colors? I have
attached pngs for the four states. Lete me knwo if this is what you
wanted.

Evan

On 11/15/06, Duncan Webb <[EMAIL PROTECTED]> wrote:

Hi all,

Is any body here good at graphics?

I thought I would update Tanja's great plug-in diskfree so that it would
show a bar, similar to volume plug-in, of the amount of disk space that
is free, instead of the pie chart.

Attached is the updated plug-in and the original photoshop graphic.

It's a bit hard-coded, but this can be changed, when the free space is
less than 8GB then it displays a red bar, when it is less than 20GB it
displays a orange bar otherwise it displays a green bar on top of a grey
bar. I thought of using percentages but recordings tend to use disk
space so I thought that gigabytes are better.

If someone would like to do so graphics, I would be absolutely delighted.

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-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users






diskfree-bad.png
Description: PNG image


diskfree-good.png
Description: PNG image


diskfree.png
Description: PNG image


diskfree-poor.png
Description: PNG image
-
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-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Song names aren't shown in Freevo 1.6

2006-11-15 Thread Michel Hoogervorst

That's indeed exactly what I have here.
Only thing is that my music files are mostly flac files, so it's not related
to mp3 files.

In 1.5.4 I saw the title from the meta tag of the file, now with 1.6 I see
the filename without extention.



2006/11/15, Duncan Webb <[EMAIL PROTECTED]>:


wout clymans wrote:
> this is my setup:
> my mp3 files look like this: 01 - Tommy Tucker - Hi Heel Sneakers.mp3
> this is what the file looks like in freevo (the title): 01 - Tommy
> Tucker - Hi Heel Sneakers

So what you would like to see is
Hi Heel Sneakers
instead of
01 - Tommy Tucker - Hi Heel Sneakers

Is this correct?

>
> I did not change anything special in my local_conf.py and i am sure that
> the title is set correctly in the id3tag
>
> Wout
>
>
> Duncan Webb wrote:
>> Michel Hoogervorst wrote:
>>
>>> It has always been shown in 1.5.4, and suddenly in 1.6 they are not
>>> shown anymore.
>>> Anyway, I tried configuring the folder, and enable MediaID tags, but
>>> still no names.
>>>
>>> Maybe I should have told that only the name is broken, the artist
name,
>>> tracknumber etc are still shown.
>>>
>>
>> AFAIK nothing has changed in this area, certainly not with mmpython and
>> not that much in the music area, except for the behaviour of detach
plug-in.
>>
>> So there must be something different about your set-up and mine as I
see
>> the artist, album and track numbers and names.
>>
>> You could either post your local_conf.py or send it directly to me so
>> that we can see exactly what is causing your problem.
>>
>> Duncan
>>
>>
>>
>>> Michel
>>>
>>> 2006/11/15, alberto hernando <[EMAIL PROTECTED]
>>> >:
>>>
>>>
>>>
>>> 2006/11/15, wout clymans <[EMAIL PROTECTED]
>>> >:
>>>
>>> I have the same problem, really annoying!
>>>
>>>
>>> Hi.
>>>
>>> You can configure it. Pressing E on the folder, you can configure
it
>>> (it's an option). There, you can choose using MediaId tags or not.
>>>
>>> Alberto


-
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-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users

-
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-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Song names aren't shown in Freevo 1.6

2006-11-15 Thread Duncan Webb
wout clymans wrote:
> this is my setup:
> my mp3 files look like this: 01 - Tommy Tucker - Hi Heel Sneakers.mp3
> this is what the file looks like in freevo (the title): 01 - Tommy
> Tucker - Hi Heel Sneakers

So what you would like to see is
Hi Heel Sneakers
instead of
01 - Tommy Tucker - Hi Heel Sneakers

Is this correct?

> 
> I did not change anything special in my local_conf.py and i am sure that
> the title is set correctly in the id3tag
> 
> Wout
> 
> 
> Duncan Webb wrote:
>> Michel Hoogervorst wrote:
>>   
>>> It has always been shown in 1.5.4, and suddenly in 1.6 they are not
>>> shown anymore.
>>> Anyway, I tried configuring the folder, and enable MediaID tags, but
>>> still no names.
>>>
>>> Maybe I should have told that only the name is broken, the artist name,
>>> tracknumber etc are still shown.
>>> 
>>
>> AFAIK nothing has changed in this area, certainly not with mmpython and
>> not that much in the music area, except for the behaviour of detach plug-in.
>>
>> So there must be something different about your set-up and mine as I see
>> the artist, album and track numbers and names.
>>
>> You could either post your local_conf.py or send it directly to me so
>> that we can see exactly what is causing your problem.
>>
>> Duncan
>>
>>
>>   
>>> Michel
>>>
>>> 2006/11/15, alberto hernando <[EMAIL PROTECTED]
>>> >:
>>>
>>>
>>>
>>> 2006/11/15, wout clymans <[EMAIL PROTECTED]
>>> >:
>>>
>>> I have the same problem, really annoying!
>>>
>>>
>>> Hi.
>>>
>>> You can configure it. Pressing E on the folder, you can configure it
>>> (it's an option). There, you can choose using MediaId tags or not.
>>>
>>> Alberto


-
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-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Song names aren't shown in Freevo 1.6

2006-11-15 Thread naudefj
Same problem here - filename (without extention) is shown instead of the ID3 
title.

Regards - Frank

On Wednesday 15 November 2006 19:13, wout clymans wrote:
> this is my setup:
> my mp3 files look like this: 01 - Tommy Tucker - Hi Heel Sneakers.mp3
> this is what the file looks like in freevo (the title): 01 - Tommy
> Tucker - Hi Heel Sneakers
>
> I did not change anything special in my local_conf.py and i am sure that
> the title is set correctly in the id3tag
>
> Wout
>
> Duncan Webb wrote:
> > Michel Hoogervorst wrote:
> >> It has always been shown in 1.5.4, and suddenly in 1.6 they are not
> >> shown anymore.
> >> Anyway, I tried configuring the folder, and enable MediaID tags, but
> >> still no names.
> >>
> >> Maybe I should have told that only the name is broken, the artist name,
> >> tracknumber etc are still shown.
> >
> > AFAIK nothing has changed in this area, certainly not with mmpython and
> > not that much in the music area, except for the behaviour of detach
> > plug-in.
> >
> > So there must be something different about your set-up and mine as I see
> > the artist, album and track numbers and names.
> >
> > You could either post your local_conf.py or send it directly to me so
> > that we can see exactly what is causing your problem.
> >
> > Duncan
> >
> >> Michel
> >>
> >> 2006/11/15, alberto hernando <[EMAIL PROTECTED]
> >> >:
> >>
> >>
> >>
> >> 2006/11/15, wout clymans <[EMAIL PROTECTED]
> >> >:
> >>
> >> I have the same problem, really annoying!
> >>
> >>
> >> Hi.
> >>
> >> You can configure it. Pressing E on the folder, you can configure it
> >> (it's an option). There, you can choose using MediaId tags or not.
> >>
> >> Alberto
> >
> > -
> > 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-users mailing list
> > Freevo-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/freevo-users

-
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-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Song names aren't shown in Freevo 1.6

2006-11-15 Thread wout clymans

this is my setup:
my mp3 files look like this: 01 - Tommy Tucker - Hi Heel Sneakers.mp3
this is what the file looks like in freevo (the title): 01 - Tommy 
Tucker - Hi Heel Sneakers


I did not change anything special in my local_conf.py and i am sure that 
the title is set correctly in the id3tag


Wout


Duncan Webb wrote:

Michel Hoogervorst wrote:
  

It has always been shown in 1.5.4, and suddenly in 1.6 they are not
shown anymore.
Anyway, I tried configuring the folder, and enable MediaID tags, but
still no names.

Maybe I should have told that only the name is broken, the artist name,
tracknumber etc are still shown.



AFAIK nothing has changed in this area, certainly not with mmpython and
not that much in the music area, except for the behaviour of detach plug-in.

So there must be something different about your set-up and mine as I see
the artist, album and track numbers and names.

You could either post your local_conf.py or send it directly to me so
that we can see exactly what is causing your problem.

Duncan


  

Michel

2006/11/15, alberto hernando <[EMAIL PROTECTED]
>:



2006/11/15, wout clymans <[EMAIL PROTECTED]
>:

I have the same problem, really annoying!


Hi.

You can configure it. Pressing E on the folder, you can configure it
(it's an option). There, you can choose using MediaId tags or not.

Alberto




-
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-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users

  


-
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-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Song names aren't shown in Freevo 1.6

2006-11-15 Thread Duncan Webb
Michel Hoogervorst wrote:
> It has always been shown in 1.5.4, and suddenly in 1.6 they are not
> shown anymore.
> Anyway, I tried configuring the folder, and enable MediaID tags, but
> still no names.
> 
> Maybe I should have told that only the name is broken, the artist name,
> tracknumber etc are still shown.

AFAIK nothing has changed in this area, certainly not with mmpython and
not that much in the music area, except for the behaviour of detach plug-in.

So there must be something different about your set-up and mine as I see
the artist, album and track numbers and names.

You could either post your local_conf.py or send it directly to me so
that we can see exactly what is causing your problem.

Duncan


> 
> Michel
> 
> 2006/11/15, alberto hernando <[EMAIL PROTECTED]
> >:
> 
> 
> 
> 2006/11/15, wout clymans <[EMAIL PROTECTED]
> >:
> 
> I have the same problem, really annoying!
> 
> 
> Hi.
> 
> You can configure it. Pressing E on the folder, you can configure it
> (it's an option). There, you can choose using MediaId tags or not.
> 
> Alberto


-
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-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] 1.6 and LCD

2006-11-15 Thread Dirk Meyer
Jason Tackaberry wrote:
> On Wed, 2006-11-01 at 10:48 +0100, Dirk Meyer wrote:
>> Maybe we could move it to kaa.base? Or kaa.display because it is also
>> some sort of display. Jason, what do you think?
>
> Possibly kaa.display.  I don't really know anything about pylcd, but
> some googling is indicating it's a python wrapper/interface to lcdproc.

Yes.

> I think putting this functionality in kaa.display does have some
> justification.

It is GPL, kaa.display should stay LGPL. Looking at the code, it is a
simple wrapper for some basic lcdproc calls. I guess I will rewrite it
using kaa.base (notifier) and make it LGPL.


Dischi

-- 
Students nowadays, complaining they only get 5MBs of disk space! In my
day we were lucky if we had one file, and that was /dev/null. 


pgpatVfDzrtRC.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-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Song names aren't shown in Freevo 1.6

2006-11-15 Thread Michel Hoogervorst

It has always been shown in 1.5.4, and suddenly in 1.6 they are not shown
anymore.
Anyway, I tried configuring the folder, and enable MediaID tags, but still
no names.

Maybe I should have told that only the name is broken, the artist name,
tracknumber etc are still shown.

Michel

2006/11/15, Michel Hoogervorst <[EMAIL PROTECTED]>:


It has always been shown in 1.5.4, and suddenly in 1.6 they are not shown
anymore.
Anyway, I tried configuring the folder, and enable MediaID tags, but still
no names.

Maybe I should have told that only the name is broken, the artist name,
tracknumber etc are still shown.

Michel

2006/11/15, alberto hernando <[EMAIL PROTECTED]>:
>
>
>
> 2006/11/15, wout clymans <[EMAIL PROTECTED]>:
> >
> >  I have the same problem, really annoying!
> >
>
> Hi.
>
> You can configure it. Pressing E on the folder, you can configure it
> (it's an option). There, you can choose using MediaId tags or not.
>
> Alberto
>
>
> -
> 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-users mailing list
> Freevo-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/freevo-users
>
>
>

-
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-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Song names aren't shown in Freevo 1.6

2006-11-15 Thread Michel Hoogervorst

It has always been shown in 1.5.4, and suddenly in 1.6 they are not shown
anymore.
Anyway, I tried configuring the folder, and enable MediaID tags, but still
no names.

Maybe I should have told that only the name is broken, the artist name,
tracknumber etc are still shown.

Michel

2006/11/15, alberto hernando <[EMAIL PROTECTED]>:




2006/11/15, wout clymans <[EMAIL PROTECTED]>:
>
>  I have the same problem, really annoying!
>

Hi.

You can configure it. Pressing E on the folder, you can configure it (it's
an option). There, you can choose using MediaId tags or not.

Alberto

-
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-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users



-
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-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Song names aren't shown in Freevo 1.6

2006-11-15 Thread alberto hernando

2006/11/15, wout clymans <[EMAIL PROTECTED]>:


 I have the same problem, really annoying!



Hi.

You can configure it. Pressing E on the folder, you can configure it (it's
an option). There, you can choose using MediaId tags or not.

Alberto
-
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-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


Re: [Freevo-users] Song names aren't shown in Freevo 1.6

2006-11-15 Thread wout clymans

I have the same problem, really annoying!

Wout

Michel Hoogervorst wrote:

Hi,

I just installed Freevo 1.6 on my Mandrive 2007 machine.
The machine was first installed with 1.5.4 from rpm (using Mandriva's 
urpmi).


Now I downloaded the new mmpython and freevo, and first installed 
mmpython with 'python setup.py install', which gave no errors.

Next I did the same for Freevo, still no errors.

At first everything seemed to work fine, but when I use the cdbackup 
plugin to rip a new cd to my drive, no song titles are shown!
I tried removing the .freevo folder in my home directory, did a 
'freevo cache', and started Freevo again.  Now the song titles are 
gone for all music files!!  Freevo just shows the filename, not the title.


Is this a bug?  Or might it be something with my 'old' config file?


Thanks in advance.

Michel


-
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-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users
  


-
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-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users


[Freevo-users] Song names aren't shown in Freevo 1.6

2006-11-15 Thread Michel Hoogervorst

Hi,

I just installed Freevo 1.6 on my Mandrive 2007 machine.
The machine was first installed with 1.5.4 from rpm (using Mandriva's
urpmi).

Now I downloaded the new mmpython and freevo, and first installed mmpython
with 'python setup.py install', which gave no errors.
Next I did the same for Freevo, still no errors.

At first everything seemed to work fine, but when I use the cdbackup plugin
to rip a new cd to my drive, no song titles are shown!
I tried removing the .freevo folder in my home directory, did a 'freevo
cache', and started Freevo again.  Now the song titles are gone for all
music files!!  Freevo just shows the filename, not the title.

Is this a bug?  Or might it be something with my 'old' config file?


Thanks in advance.

Michel
-
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-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users