diff --git a/README.md b/README.md index c8633ce..2def4a0 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ This project is an attempt at making a [OBS Studio](https://obsproject.com/) plu The plugin display the current playing track info (title, album, artist) and artwork. -Data is collected though the [MPRIS 2](https://specifications.freedesktop.org/mpris-spec/latest/) interface so a lot of players should be supported (VLC, Spotify, Firefox, ...). +Data is collected though the [MPRIS 2](https://specifications.freedesktop.org/mpris-spec/latest/) or [Windows.Media.Control](https://docs.microsoft.com/en-us/uwp/api/windows.media.control?view=winrt-20348) interfaces so a lot of players should be supported (VLC, Spotify, Firefox, ...). ## Screenshot ![Screenshot of obs with the plugin installed](screen.png) @@ -69,7 +69,9 @@ $ cp obs_media_plugin.so /usr/share/obs/obs-plugins/ - [ ] Handle different artwork ratio (ex: Youtube videos) - [ ] Handle missing artwork (or partial info in general) - [ ] Not relying on ffmpeg to download images files (linux) +- [ ] Build using cmake like others obs plugins ## Note -If using Firefox make sure `media.hardwaremediakeys.enabled` is set to `true` (default) +* If using Firefox make sure `media.hardwaremediakeys.enabled` is set to `true` (default) +* On Windows, the player must be started before obs starts. Otherwise the infos will not be available. This is because of a bug introduced in windows 20H1, with prevent the feature to be implemented the 'correct' way. Workarounds are possible but none are implemented at this time.