-
I love this script 10/10 but real quick. I have songs that I get from soundcloud and when i import them its renaming them with __ in front of there name. What does that typically mean and can i prevent this.
Heres an example of one of my song Thank you in advance! |
Beta Was this translation helpful? Give feedback.
Answered by
DjSlash
Jun 8, 2024
Replies: 1 comment 7 replies
-
Without knowing your config nor how the songs are called, my best guess would be that the artist/title contains characters that are being replaced. |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I've been scratching my head, but suddenly it hits. The only metadata available is title. But your
paths
configuration also wants album and albumartist. Those don't exist. That makes the path evaluate to "D:\Music\\file.ext", which obviously is incorrect, hence those extra slashes being replaced by underscores.Either change the path to only use the title, or improve the metadata of the files so they contain artist/albumartist/album.
Some considerations:
beet import -s
) if the files don't make up for albums (note that this reflect thesingleton
part in yourpaths
configurat…