-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Play nicely with multiple mpv
instances
#7
Comments
I was wondering when this would come up. Currently, the first instance of mpv will create a bus named What are you using to consume the MPRIS data? It's possible that when the video starts, control is handed over to the video MPRIS bus and the new metadata is retrieved since a metadata changed signal will be emitted. But when the video ends and it returns to using the original music instance, it is waiting for the metadata changed signal, which the original instance can't know it has to give, instead of getting the metadata info on its own. What happens if after following the steps above, you subsequently change tracks, triggering the metadata changed signal? |
Yes, essentially this is what I think is happening. After the track changes, the metadata correctly reflects the new track. |
Maybe a possible workaround to this would be to emit the metadata changed signal whenever playback is resumed and maybe on other events, but this is quite a specific situation which would be better fixed by the client application. Conversely, adding this probably wouldn't do any harm. I'll have a play around with this later in the week when I have time. |
I don't know exactly what the correct behaviour in general for this ought to be, but I observed the following behaviour that I would consider to be a bug:
mpv
mpv
Now, I can resume the music with MPRIS (good), but the track information emitted is that of the video I watched instead of the music.
The text was updated successfully, but these errors were encountered: