Nerixyz / current-song2

Display the currently playing song/audio.
https://currentsong.nerixyz.de
85 stars 7 forks source link
hacktoberfest rust typescript

Current Song 2

example screenshot with default theme

The documentation is located at currentsong.nerixyz.de.

This project is a rewrite of the CurrentSong Overlay. The core is written in Rust now. Both Windows and Unix platforms are supported. On Windows, GlobalSystemMediaTransportControls is used and on Unix, D-Bus is used.

The goal of the project is to create a simple yet powerful overlay that displays the currently playing song. There are a few unique features separating this project:

Architecture

graph TD;
    gsmtc[GSMTC<br><i>Windows</i>]
    dbus[MPRIS D-Bus<br><i>Unix</i>]
    ext[Browser Extension]
    cso2[CurrentSong2]
    ext-->cso2
    Browser-->dbus
    Spotify-->dbus
    VLC-->dbus
    MPV-->dbus
    Browser-- limited <br> playback progress -->gsmtc
    Browser-- playback progress -->ext
    Spotify-->gsmtc
    gsmtc-->cso2
    dbus-->cso2
    cso2-->Overlay

Planned Features

See more in the projects tab.