I've imported some music and skipped some albums, how do I get it to rescan all those that have been skipped?
jbd_ has left the channel
jbd_ joined the channel
jbd_ has left the channel
kpj joined the channel
kpj has quit
kpj joined the channel
kpj has quit
kpj joined the channel
kpj has quit
jbd_ joined the channel
lad1337 has quit
kpj joined the channel
watsonalgas joined the channel
axion joined the channel
jbd_ has left the channel
axion has quit
zeltak
mmm is there a way to have beets define 2 types of single mode: one singles from an aritst you have others full albums in your library and a 1-2 hit wonder single mode
that is add the normal single mode under the artist folder but the 1 hit wonder under a seperate VA folder?
am i making sense :)?
Joschasa_ joined the channel
Joschasa has quit
Joschasa_ has quit
derwin
"no"
sampsyo
zeltak: One idea: you could write an inline field that checks whether the artist directory already exists.
zeltak
sampsyo: sounds great
but no clue how to do that :)
remember i cant code at all :)
sampsyo
well yes, you would indeed need to know python :)
zeltak
hehe i am scheduled to learn python a bit later this year :)
how do you guys deal with singles from artists you have and one hit wonders?
jbd_ joined the channel
sampsyo
they all just go in the singletons directory for me
I like having albums and singles separate even when I have both for a given artist
zeltak
i see ok ill maybe adjust my method and adopt this approach to be more beets compatible :)
sampsyo
it would certainly be easier, if you can compromise on your dreams :)
zeltak
hehe
i guess its not that bad as the player (like mpd) will still see it as the same aritsts
lazka has quit
sampsyo: can i bother you with a regex/zero plugin question?
how does one delete everything on the comments field apart from the letter F (both cases ie f/F)
oh when its a single letter ofc. there is logic behind this :)
i had my mpd tracks commented 'F' for favourite
as a kinda crude rating system
thunderrd has quit
sampsyo
oh, cool
The regex you want is something like ^[Ff]$
Right?
zeltak
i guess ;-) again no coding/regex skills lol
so something like this line: comments: [EAC, LAME, from.+collection, 'ripped by']
err i mean
comments : [ ^[Ff]$ ]
should delete all but F?
thunderrd joined the channel
also (sorry for multiple questions) can beets launch an external command when it finishes importing on imported files (for example an external script that batch replaygains)
sampsyo
Yes, along those lines
You may need to quote the regex
E.g., [ '^[Ff]$' ]
And no, there's no command hook or anything, but a plugin like that would be easy to cook up