Mark Greenwood

Results 75 comments of Mark Greenwood

I've made a slight tweak to the refresh code and put in some more debug output. If it happens again, send me the complete log showing the global refresh and...

Same here. I have 3 Pis all running Raspbian Bullseye Lite, all were running 0.25 before. Two (both 3Bs with 1GB RAM) are working with 0.26, one of them is...

Thanks for the quick response. Unfortunately that new build still segfaults on my Pi Zero. ``` $ uname -a Linux zero 5.10.63+ #1488 Thu Nov 18 16:14:04 GMT 2021 armv6l...

I was suspicious about the fact the 0.26 has a new dependency on libvorbisidec1, which 0.25 didn't have. So I built a new version from source, after hacking the Makefile...

With the release of Mopidy 3 this seems to be working in all cases except when using a filesink with a fifo (as you would for snapcast). The hack of...

Thanks. It's a real shame Gstreamer doesn't work properly with fifos as Snapcast + Mopidy is a really nice multi-room Spotify player. The hack workaround works as far as it...

@kingsticks thanks for that, I built the new snapserver and am now using a TCP sink instead of a FIFO and so far it's working a treat. No errors from...

Confirmed, this is happening for me too. Might be relevant that I'm using a direct hw: ALSA device because my other system, which is outputting to a TCP stream for...

I'm not convinced this is the correct way to fix this, but in core/playback.py changing def _on_end_of_stream(self): self.set_state(PlaybackState.STOPPED) if self._current_tl_track: self._trigger_track_playback_ended(self.get_time_position()) self._set_current_tl_track(None) to def _on_end_of_stream(self): if self._current_tl_track: self._trigger_track_playback_ended(self.get_time_position()) self.stop() self._set_current_tl_track(None)...

Just to say same here (mopidy 0.19.5, OSX 10.10.1), also that mopidy doesn't emit event:volumeChanged via the HTTP API when this happens so it must be happening at a lower...