I write a some program that should work with another player and retrieve info about current playing song. That player is written using UWP, so Windows knows what track is playing, so i can see it's name and other info when changing volume:
https://i.stack.imgur.com/WSmwh.png
Things I tried:
var systemMediaControls = SystemMediaTransportControls.GetForCurrentView();
From Get current playing track info from Microsoft Groove Music app
Unfortunately, as I understand, it's just for local media, playing from my app.
Background media player doesn't helped too because of same reason.
Is it possible at all to get it from Windows? Or I should directly read memory of that player, heh?