Re: collections in python xmmsclient

2008-01-08 Thread Anders Waldenborg
Alex Polite wrote: > I just started fooling around with xmms2 and python yesterday. Seems > very easy to make quite cool clients. Is there a way to make mlib > searches (like the ones found here > http://wiki.xmms2.xmms.se/index.php/Collections) from python? Yes. Slightly longer answer: Somethi

Re: collections in python xmmsclient

2008-01-08 Thread Sham Chukoury
Anders Waldenborg wrote: > from xmmsclient import collections as coll > m = coll.Match(coll.Universe(), field="artist", value="mind.in.a.box") > xs.coll_query_ids(m) Or even easier, using the collections syntax parser ;) def library_find(self, query, cb): def __query_cb(res): cb(re

Re: collections in python xmmsclient

2008-01-08 Thread Daniel Svensson
On Jan 7, 2008 8:16 PM, Alex Polite <[EMAIL PROTECTED]> wrote: > I just started fooling around with xmms2 and python yesterday. Seems > very easy to make quite cool clients. Is there a way to make mlib > searches (like the ones found here > http://wiki.xmms2.xmms.se/index.php/Collections) from pyth

Re: FOSDEM 2008

2008-01-08 Thread Tobias Rundström
>> If people are interested I can help coordinate hotel booking (we want >> to stay at the same place). > > That'd be cool indeed! Ok guys, I have been looking around and found a suitable hotel. It's in the center and we can share double rooms between us the cost will be 75 euro per person for

Re: FOSDEM 2008

2008-01-08 Thread Anders Waldenborg
Tobias Rundström wrote: > Ok guys, I have been looking around and found a suitable hotel. It's > in the center and we can share double rooms between us the cost will > be 75 euro per person for two nights. Does hotel have wifi? ;) URL? > I would like to book this asap, so if you are interest

Re: FOSDEM 2008

2008-01-08 Thread Tobias Rundström
On 8 jan 2008, at 14.57, Anders Waldenborg wrote: > Tobias Rundström wrote: >> Ok guys, I have been looking around and found a suitable hotel. >> It's in the center and we can share double rooms between us the >> cost will be 75 euro per person for two nights. > > Does hotel have wifi? ;)

Re: FOSDEM 2008

2008-01-08 Thread Daniel Svensson
On Jan 8, 2008 2:13 PM, Tobias Rundström <[EMAIL PROTECTED]> wrote: > I would like to book this asap, so if you are interested please tell > me, if you think it's to expensive also please email me. I'm in! -- Daniel Svensson -- ___ Xmms2-devel mailing

Re: FOSDEM 2008

2008-01-08 Thread Sébastien Cevey
> In <[EMAIL PROTECTED]> > Tobias Rundström <[EMAIL PROTECTED]> wrote: > I would like to book this asap, so if you are interested please tell > me, if you think it's to expensive also please email me. I'm in too, unless aliens come and there is a free beer/whore/speech event in Bruss

Re: FOSDEM 2008

2008-01-08 Thread Tilman Sauerbeck
Tobias Rundström [2008-01-08 14:13]: > >> If people are interested I can help coordinate hotel booking (we want > >> to stay at the same place). > > > > That'd be cool indeed! > > Ok guys, I have been looking around and found a suitable hotel. It's > in the center and we can share double rooms b

ALSA plugin

2008-01-08 Thread Peter Stuge
Hi. I chatted on IRC yesterday. I'm having some issue(s) with ALSA. I want to stream aac. xmms2d will set up the chain successfully but then not produce sound. Under various circumstances I've gotten xmms2d to hang/spin on two different code parts as observed with strace. The first is a loop wit

Re: FOSDEM 2008

2008-01-08 Thread Tobias Rundström
On 8 jan 2008, at 18.33, Tilman Sauerbeck wrote: > Thanks for the hotel scouting. > I'm interested; I'll figure out how much I have to pay for the > travelling and let you know then. Great! We have quite a few people interested, I will have to set a deadline for the hotel booking though. If you

Re: collections in python xmmsclient

2008-01-08 Thread Alex Polite
Ok. I've looked at it a bit. And Here's what I relly want to do: I want to retrieve all artist names in my mlib that occur in more than ten entries, then I want to sort those artist names by order of recency (ie artist that appears in most recently played entry wins). One way of doing that would o