[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: Add Yandex Music Source docs

FoxxMD (Apr 6, 2026, 3:04 PM UTC) 7897dc95 0bef1975

+81
+1
docsite/docs/configuration/sources/sources.mdx
··· 40 40 | [WebScrobbler](/configuration/sources/webscrobbler) | [Ingress](./?sourceComm=active#by-communication-method) | [History](./?sot=history#by-data-source-of-truth) | ❌ | ✅ | ❌ | ❌ | 41 41 | [VLC](/configuration/sources/vlc) | [Active](./?sourceComm=active#by-communication-method) | [Activity](./?sot=activity#by-data-source-of-truth) | ❌ | ✅ | ✅ | ❌ | 42 42 | [Yamaha MusicCast](/configuration/sources/yamaha-musiccast) | [Active](./?sourceComm=active#by-communication-method) | [Activity](./?sot=activity#by-data-source-of-truth) | ❌ | ✅ | ✅ | ❌ | 43 + | [Yandex Music](/configuration/sources/yandex-music) | [Active](./?sourceComm=active#by-communication-method) | [Activity](./?sot=activity#by-data-source-of-truth) | | ✅ | ✅ | ❌ | 43 44 | [Youtube Music](/configuration/sources/youtube-music) | [Active](./?sourceComm=active#by-communication-method) | [History](./?sot=history#by-data-source-of-truth) | ❌ | ✅ | ❌ | ❌ | 44 45 45 46 ## Features
+79
docsite/docs/configuration/sources/yandex-music.mdx
··· 1 + --- 2 + title: Yandex Music 3 + toc_min_heading_level: 2 4 + toc_max_heading_level: 5 5 + --- 6 + 7 + import Tabs from '@theme/Tabs'; 8 + import TabItem from '@theme/TabItem'; 9 + import CodeBlock from '@theme/CodeBlock'; 10 + import JsonConfig from '!!raw-loader!@site/../config/ymbridge.json.example'; 11 + 12 + Monitor your [**Yandex Music**](https://music.yandex.com) listening activity in real-time. 13 + 14 + This Source requires a third party docker container to communicate with Yandex Music, [`yandex-music-bridge`](https://github.com/Druidblack/yandex-music-bridge). 15 + 16 + <details> 17 + 18 + <summary>Example Docker Compose with `yandex-music-bridge`</summary> 19 + 20 + ```yaml title="~/msData/docker-compose.yml" 21 + services: 22 + multi-scrobbler: 23 + image: foxxmd/multi-scrobbler 24 + container_name: multi-scrobbler 25 + environment: 26 + - TZ=Etc/GMT 27 + # ...your other sources/clients here 28 + 29 + # add for yandex music 30 + // highlight-start 31 + - YMBRIDGE_URL=http://yandex-music-bridge:9980 32 + - YMBRIDGE_API_KEY=change-me 33 + // highlight-end 34 + 35 + volumes: 36 + - "./config:/config" 37 + ports: 38 + - "9078:9078" 39 + restart: unless-stopped 40 + 41 + // highlight-start 42 + yandex-music-bridge: 43 + image: ghcr.io/druidblack/yandex-music-bridge:latest 44 + environment: 45 + - TZ=Europe/Moscow 46 + - YM_TOKEN=AgAAAAACO3_345345 47 + - YM_API_KEY=change-me 48 + - YM_PORT=9980 49 + - YM_LANGUAGE=ru 50 + - YM_ENABLE_YNISON=true 51 + - YM_PUSH_TTL=45 52 + - YM_QUEUE_CACHE_TTL=15 53 + - YM_LOG_LEVEL=INFO 54 + ports: 55 + - "9980:9980" 56 + restart: unless-stopped 57 + // highlight-end 58 + ``` 59 + 60 + You will need to acquire your own token for `YM_TOKEN` used in [`yandex-music-bridge`](https://github.com/Druidblack/yandex-music-bridge) using the instructions provided there. 61 + 62 + </details> 63 + 64 + <DetailsAdmo type="tip" summary="Need Help?"> 65 + 66 + If your issue is specifically related to [`yandex-music-bridge`](https://github.com/Druidblack/yandex-music-bridge) (errors in the container, usage instructions, general Yandex setup like token etc...) please open an issue on **that repository** instead of Multi-Scrobbler's. 67 + 68 + If you have issues specifically with the MS Source please mention [**Druidblack**](https://github.com/Druidblack) (`@Druidblack`) when opening an [issue](https://github.com/FoxxMD/multi-scrobbler/issues/new/choose) or [discussion](https://github.com/FoxxMD/multi-scrobbler/discussions/new/choose). Yandex Music is [not available](https://en.wikipedia.org/wiki/Yandex_Music) in the country of the main Multi-Scrobbler developer (FoxxMD) so they can only help troubleshooting general MS issues related to Yandex Music. 69 + 70 + </DetailsAdmo> 71 + 72 + ## Configuration 73 + 74 + <Config config="YandexMusicBridgeSourceConfig" fileContent={JsonConfig} name="ymbridge"> 75 + | Environmental Variable | Required? | Default | Description | 76 + | :--------------------- | :-------- | ------- | :------------------------------------------------------------------------ | 77 + | `YMBRIDGE_URL` | Yes | | `http://URL:PORT` for the `yandex-music-bridge` container | 78 + | `YMBRIDGE_API_KEY` | No | | The same key used for `YM_API_KEY` on the `yandex-music-bridge` container | 79 + </Config>
+1
docsite/docs/index.mdx
··· 41 41 * [WebScrobbler](/configuration/sources/webscrobbler) 42 42 * [VLC](/configuration/sources/vlc) 43 43 * [Yamaha MusicCast](/configuration/sources/yamaha-musiccast) 44 + * [Yandex Music](/configuration/sources/yandex-music) 44 45 * [Youtube Music](/configuration/sources/youtube-music) 45 46 * Supports scrobbling to many [**Clients**](/configuration/clients) 46 47 * [Discord](/configuration/clients/discord) (Now Playing)