Thomas Adamcik

Results 154 comments of Thomas Adamcik

Could you try running with `mopidy -o loglevels/mopidy.audio.gst=DEBUG` to get some more logs. I have a fairly good idea of what is happening, but can't seem to reproduce it.

Oh and what type of URI was this, web stream, local file, spotify, ...?

Never mind, I think I've understood what is happening here. Short version is that I think we have a race condition, but as you noted it should be mostly harmless....

There is a bit more to it when multiple backends can service the same request. Either first one in order that returns a non empty list wins, or we have...

@tkem - any thoughts how a uri like `podcast+http://www.example.com/mypodcast.rss` should be parsed. One approach I've seen is treating it like `scheme = podcast` and then considering the stuff after the...

This could also be done more along the lines of an routing system (think web apps) or a rewrite system. The latter would simply be a hook that allows backend...

Idea just came up on IRC that dz0ny's mopidy android app could have intents registered for the extensions we support, so in that case we would need to make this...

I've been thinking over this based on the somafm bug I commented on. I think we want to allow backends to pass on answering things about prefixes they've claimed. This...

Started adding a helper for prefix matching, and will try with the simplest thing we can get away with.

Asssuming the follwing code: ``` python import logging from BaseHTTPServer import BaseHTTPRequestHandler from mopidy import get_version logger = logging.getLogger('mopidy.outputs.http') class StreamingHTTPRequestHandler(BaseHTTPRequestHandler): server_version = 'HTTPOutput/%s' % get_version() def do_GET(self): self.send_response(200) self.send_header('content-type',...