Skip to content

Instantly share code, notes, and snippets.

@littletsu
Last active March 10, 2025 23:38
Show Gist options
  • Save littletsu/819a1089776a57584cc5f1197686c7d7 to your computer and use it in GitHub Desktop.
Save littletsu/819a1089776a57584cc5f1197686c7d7 to your computer and use it in GitHub Desktop.
Web Scrobbler regex edits
[
{
"search": {
"track": null,
"artist": null,
"album": "(.*) - Single",
"albumArtist": null
},
"replace": {
"track": null,
"artist": null,
"album": "$1",
"albumArtist": null
}
},
{
"search": {
"track": null,
"artist": "(.*) - Tema",
"album": null,
"albumArtist": null
},
"replace": {
"track": null,
"artist": "$1",
"album": null,
"albumArtist": null
}
},
{
"search": {
"track": null,
"albumArtist": "(.*) - Tema",
"album": null,
"artist": null
},
"replace": {
"track": null,
"albumArtist": "$1",
"album": null,
"artist": null
}
},
{
"search": {
"track": null,
"artist": null,
"album": "(.*) - EP",
"albumArtist": null
},
"replace": {
"track": null,
"artist": null,
"album": "$1",
"albumArtist": null
}
},
{
"search": {
"track": null,
"artist": null,
"album": "(.*) - Single",
"albumArtist": null
},
"replace": {
"track": null,
"artist": null,
"album": "$1",
"albumArtist": null
}
},
{
"search": {
"track": null,
"artist": null,
"album": "(.*) - EP",
"albumArtist": null
},
"replace": {
"track": null,
"artist": null,
"album": "$1",
"albumArtist": null
}
},
{
"search": {
"track": null,
"artist": "Brave Little Abacus",
"album": null,
"albumArtist": null
},
"replace": {
"track": null,
"artist": "The Brave Little Abacus",
"album": null,
"albumArtist": null
}
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment