@penny @iris Good news: I figured out how to scrobble to fedi
Bad news: So far the only way is a shell script that works with mpd / mpc.
TOKEN=$(cat $HOME/shell/mpd-scrobble/token.txt) TITLE=$(mpc current -f %title%) ARTIST=$(mpc current -f %artist%) ALBUM=$(mpc current -f %album%) INSTANCE="shitposter.world" curl -s -X POST \ -d "title=$TITLE " \ -d "album=$ALBUM " \ -d "artist=$ARTIST " \ -H 'Authorization: Bearer '$TOKEN \ https://$INSTANCE/api/v1/pleroma/scrobble > /dev/nullIf you want to test this and validate output, make sure to remove the /dev/null and the -s on curl. I have this execute whenever a song changes on ncmpcpp