[READ-ONLY] Mirror of https://github.com/FoxxMD/multi-scrobbler. Scrobble plays from multiple sources to multiple clients docs.multi-scrobbler.app
deezer docker jellyfin koito lastfm listenbrainz maloja mopidy mpris music music-assistant plex scrobble self-hosted spotify subsonic tautulli youtube-music
0

Configure Feed

Select the types of activity you want to include in your feed.

docs: Update kitchensink

FoxxMD (Nov 4, 2025, 7:04 PM UTC) ff74fd7e 680f862e

+28 -9
+28 -9
docsite/docs/configuration/kitchensink.md docsite/docs/configuration/kitchensink.mdx
··· 3 3 title: Kitchen Sink 4 4 --- 5 5 6 - # Example Config using all Possible Features 6 + # Example Complex Scenario 7 7 8 8 Scenario: 9 9 10 10 * You want to scrobble plays for yourself (Foxx), Fred, and Mary 11 - * Each person has their own Maloja server 11 + * Each person has their own [Maloja](/configuration/clients/maloja) server 12 12 * Each person has their own Spotify account 13 - * You have your own Airsonic (subsonic) server you to scrobble from 14 - * You have your own Youtube Music account you want to scrobble from 15 - * Mary has her own Last.fm account she also wants to scrobble to 16 - * Fred has his own Spotify application and provides you with just his access and refresh token because he doesn't trust you (wtf Fred) 13 + * You have your own Airsonic ([subsonic](/configuration/sources/subsonic)) server you to scrobble from 14 + * You have your own [Youtube Music](/configuration/soures/youtube-mysic) account you want to scrobble from 15 + * Mary has her own [Last.fm](/configuration/clients/lastfm) account she also wants to scrobble to 16 + * Fred has his own [Spotify](/configuration/sources/spotify) application and provides you with just his access and refresh token because he doesn't trust you (wtf Fred) 17 17 * Fred has a Plex server and wants to scrobble everything he plays 18 18 * Mary uses Fred's Plex server but only wants to scrobble her plays from the `podcast` library 19 - * The three of you have a shared library on Plex called `party` that you only play when you are hanging out. You want plays from that library to be scrobbled to everyone's servers. 20 - * Fred also has his own Jellyfin server and wants to scrobble everything he plays 19 + * The three of you have a shared library on [Plex](/configuration/sources/plex) called `party` that you only play when you are hanging out. You want plays from that library to be scrobbled to everyone's servers. 20 + * Fred also has his own [Jellyfin server](/configurion/sources/jellyfin) and wants to scrobble everything he plays 21 + * You have an android music app that can scrobble to a [custom listenbrainz server](/configuration/sources/listenbrainz-endpoint) 21 22 22 23 ### All-in-one Config 23 24 ··· 124 125 "cookie": "__Secure-3PAPISID=3AxsXpy0MKGu75Qb/AkISXGqOnSDn1jEKn; DEVICE_INFO=ChxOekU0Tmpjek5EWTBPRGd3TlRBMk16QXpNdz09EJbS8Z0GGJbS8Z0G; ...", 125 126 } 126 127 }, 128 + { 129 + "type": "endpointlz", 130 + "name": "listenbrainzfoxx", 131 + "clients": ["foxxMaloja"], 132 + "data": { 133 + "token": "myToken" 134 + } 135 + } 127 136 ], 128 137 "clients": [ 129 138 { ··· 246 255 ```json5 title="CONFIG_DIR/ytmusic.json" 247 256 [ 248 257 { 249 - "type": "ytmusic", 250 258 "name": "foxxYoutube", 251 259 "clients": ["foxxMaloja"], 252 260 "data": { 253 261 "cookie": "__Secure-3PAPISID=3AxsXpy0MKGu75Qb/AkISXGqOnSDn1jEKn; DEVICE_INFO=ChxOekU0Tmpjek5EWTBPRGd3TlRBMk16QXpNdz09EJbS8Z0GGJbS8Z0G; ...", 262 + } 263 + } 264 + ] 265 + ``` 266 + ```json5 title="CONFIG_DIR/endpointlz.json" 267 + [ 268 + { 269 + "name": "listenbrainzfoxx", 270 + "clients": ["foxxMaloja"], 271 + "data": { 272 + "token": "myToken", 254 273 } 255 274 } 256 275 ]