Last active
March 10, 2025 23:38
-
-
Save littletsu/819a1089776a57584cc5f1197686c7d7 to your computer and use it in GitHub Desktop.
Web Scrobbler regex edits
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"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