-
Hi @snejus, before I open an issue in the beetcamp repo I wanted to make sure it's not user error and clarify what the expected behaviour / current implementation of beetcamp is. Two things: I'm not yet sure if it's configurable but I see genres coming from beetcamp/bandcamp seem to be all lower case. Genre plugins like
lastgenre would give me something like this even though it might have received it in non-caps from last.fm: Does such an option exist in beetcamp? If not, I would open a feature request over at the repo and hope someone picks it up :-) Another thing we see in the output above: I often (but not always) miss the catalog number in bandcamp-tagged albums (The empty square brackets above, the actual catno of this release on Discogs or MusicBrainz is I fear this is due to lacking information in the bandcamp database. Can you confirm this or tell me how to doublecheck if for this particular release (https://lmajormusic.bandcamp.com/album/cant-do-it) bandcamp/the bandcamp api has a catalog number? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 8 replies
-
hi @JOJ0,
You can use the url2json https://lmajormusic.bandcamp.com/album/cant-do-it you will find that most of that information gets displayed on the screen, and that the catalogue number does not have its own field. |
Beta Was this translation helpful? Give feedback.
-
If you're interested in the madness behind catalogue number extraction, see here and here 😅 |
Beta Was this translation helpful? Give feedback.
-
Ah, another question comes up. With lastgenre I always exclude the genre "Electronic" because I think it doesn't tell much. I see we can do |
Beta Was this translation helpful? Give feedback.
hi @JOJ0,
Capitalisation: use
bandcamp.genre.capitalize = yes
configuration optionCatalogue numbers:
beetcamp
has a fairly advanced catalogue number parser which checks album name, description, media information and even track titles, but often the catalogue number is simply missing. Have just checked the album page for your example and unfortunately the catalogue number does not get mentioned 😞.beetcamp
only checks the bandcamp page for information and does not query any external sources.You can use the
url2json
script from the repository root to obtain the JSON data that it works withyou will find that most of that inf…