You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -37,7 +38,8 @@ A javascript app to scrobble music you listened to, to [Maloja](https://github.c
37
38
* Graceful network and client failure handling (queued scrobbles that auto-retry)
38
39
* Smart handling of credentials (persistent, authorization through app)
39
40
* Easy configuration through ENVs or JSON
40
-
* Install using [Docker images for x86/ARM](https://foxxmd.github.io/multi-scrobbler/docs/installation#docker#docker), [flatpak](https://foxxmd.github.io/multi-scrobbler/docs/installation#docker#flatpak), or [locally with NodeJS](https://foxxmd.github.io/multi-scrobbler/docs/installation#docker#nodejs)
41
+
* Modify data before scrobbling with [regular expression or search patterns](https://foxxmd.github.io/multi-scrobbler/docs/transforms)
42
+
* Install using [Docker images for x86/ARM](https://foxxmd.github.io/multi-scrobbler/docs/installation#docker), [flatpak](https://foxxmd.github.io/multi-scrobbler/docs/installationr#flatpak), or [locally with NodeJS](https://foxxmd.github.io/multi-scrobbler/docs/installation#nodejs)
Copy file name to clipboardexpand all lines: docsite/docs/FAQ.md
+4
Original file line number
Diff line number
Diff line change
@@ -124,6 +124,10 @@ If multi-scrobbler is not running on the same machine your browser is on then th
124
124
125
125
EX `http://localhost:9078/lastfm/callback` -> `http://192.168.0.220:9078/lastfm/callback`
126
126
127
+
### Deezer is not working
128
+
129
+
Deezer has discontinued support for their API and the Deezer Source is now [**deprecated.**](configuration/configuration.mdx#deezer) See [this issue for more discussion.](https://github.com/FoxxMD/multi-scrobbler/issues/175#issuecomment-2296776625)
@@ -146,7 +147,7 @@ These options affect multi-scrobbler's behavior and are not specific to any sour
146
147
147
148
#### Base URL
148
149
149
-
Defines the URL that is used to generate default redirect URLs for authentication on [spotify](#spotify), [lastfm](#lastfm), and [deezer](#deezer) -- as well as some logging hints.
150
+
Defines the URL that is used to generate default redirect URLs for authentication on [spotify](#spotify)and [lastfm](#lastfm) -- as well as some logging hints.
150
151
151
152
* Default => `http://localhost:9078`
152
153
* Set with [ENV](./configuration?configType=env#configuration-types)`BASE_URL` or `baseUrl`[all-in-one configuration](./configuration?configType=aio#configuration-types)
@@ -491,7 +492,21 @@ On your [profile page](https://listenbrainz.org/profile/) find your **User Token
491
492
</TabItem>
492
493
</Tabs>
493
494
494
-
### [Deezer](https://deezer.com/)
495
+
### [~~Deezer~~](https://deezer.com/)
496
+
497
+
:::warning
498
+
499
+
**This Source is DEPRECATED because Deezer has dropped official API support.** This Source will **not** be removed but no further support or fixes will be given.
500
+
501
+
Users cannot create new applications on Deezer Developers and there is no guarantee existing applications will continue to work.
502
+
503
+
As a workaround consider integrating Deezer with last.fm and then using [last.fm as a Source](#lastfm-source).
504
+
505
+
Users with existing Deezer applications in use with multi-scrobbler should consider this change as well to avoid future breaking issues with the unsupported API.
506
+
507
+
[See this issue for more discussion.](https://github.com/FoxxMD/multi-scrobbler/issues/175#issuecomment-2296776625)
508
+
509
+
:::
495
510
496
511
Create a new application at [Deezer Developers](https://developers.deezer.com/myapps)
497
512
@@ -1256,6 +1271,52 @@ If no URL is provided to MS it will try to use `ws://localhost:7905`
1256
1271
</TabItem>
1257
1272
</Tabs>
1258
1273
1274
+
### [MPD (Music Player Daemon)](https://www.musicpd.org/)
1275
+
1276
+
MS communicates with MPD using the [TCP client connection.](https://mpd.readthedocs.io/en/stable/user.html#client-connections)
1277
+
1278
+
You should uncomment/create the following settings in your mpd config:
1279
+
1280
+
```
1281
+
bind_to_address "any" # or a specific ipv4/v6 address
0 commit comments