Thomas Adamcik

Results 154 comments of Thomas Adamcik

Testing with changing the button href in https://mopidy.com/ext/soundcloud/ to point at the bridge and going through ends up failing with `INVALID_STATE: Authentication page sent wrong state to pop-up.` since we...

See #110 for some previous discussion about this with regard to libspotify not being available.

Sounds like you are looking for https://github.com/mopidy/mopidy/issues/620

I think this kept failing with Spotify due some buffer issues in the gstreamer pipeline. If memory serves this was fixed at some point before libspotify got killed. I'm not...

@janiversen if you are interested in multiroom see this issue and #790 for the prior state (in case you haven't seen them yet). I think this is doable now, per...

I was looking at if requiring a codec (https://github.com/mopidy/mopidy/issues/891) might make sense. Could be I want the same for specifying that this backend requires something that can handle spotify uris...

Could be https://github.com/mopidy/mopidy/issues/794

Based on what you are describing, it sounds a bit like this could be solved by an idea I've been playing around with for `browse()`. Currently `browse()` provides a single...

Following code is probably what we want to use to solve both this issue and #859 ``` In [30]: q = gst.query_new_buffering(gst.FORMAT_TIME) In [31]: src.query(q) Out[31]: True In [32]: q.parse_buffering_stats()...

Oh, part of this could actually already be handled by the fact that we do `change_track(track)` and not `change_track(uri)` - so we already have the info. As for the missing...