Automatic scrobbler for you scrobble your favorite track as many times as you want.
Remember that the daily limit of Scrobbles on LastFM is 2800. More than that will cause the "Rate Limit" error, so you will be 24 hours without being able to interact with the scrobble API.
Follow the commands in your terminal:
$ git clone https://github.com/vergonha/auto-scrobbler.git
$ cd auto-scrobbler
$ bun install
After that, rename the ".env.example" file to ".env".
You can get your API and SECRET here
API=YOUR API KEY
SECRET=YOUR SECRET KEY
USER_NAME=YOUR LASTFM USER_NAME
PASSWD=YOUR LASTFM PASSWORD
After that, type in your bash:
$ bun start
Now you can scrobble more than one song at the same time.
// config.ts
{
"tracks": [
{
"name": "There is a Light That Never Goes Out",
"artist": "The Smiths"
},
{
"name": "This Charming Man",
"artist": "The Smiths"
}
],
"timeout": 1,
"debug": false
}
Add your songs in the config.ts
file. You can add as many songs as you like.