You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here is an email I received about an MPRIS2 problem
had to make a couple of changes to lastfm-desktop to have the MPRIS listener working.
First, when the track changes without a state change, that is, if you click another track on a player without pausing or stopping, the state will always be "Playing" and lastfm-desktop will never see the change.
Changed Mpris2Service.cpp to always emit stateChanged( m_state ) by removing && changedProperties.value( "PlaybackStatus" ).toString() != m_state
Second, nothing was being submited because of the check track.extra("playerId" ) != "mpris2" on ScrobbleService::scrobblableTrack on ScrobbleService.cpp.
The player is rhythmbox.
With gmusicbrowser I had a weirder problem: it only sends PlaybackStatus on the properties changed when you change the playback status (compare to rhythmbox that send the actual status with every track change, for instance "Playing").
So, if you start lastfm-scrobbler with gmusicbrowser already playing you won't get to see any tracks because PlaybackStatus will never be there.
Fixed gmusicbrowser's mpris2.pm to always include the PlaybackStatus on changes. Couldn't think of a better way.
The text was updated successfully, but these errors were encountered:
Here is an email I received about an MPRIS2 problem
The text was updated successfully, but these errors were encountered: