HydrogenAudio

Hosted Forums => foobar2000 => General - (fb2k) => Topic started by: $ergi0 on 2013-01-20 19:17:31

Title: artist art location
Post by: $ergi0 on 2013-01-20 19:17:31
hi

i've developed a small plugin for myself that downloads artist and album art for selected tracks
the plugin itself works ok, but i can't get foobar to show artist arts from parent folder

i've tried adding "../artist.jpg" to patterns, but it doesn't work

is it possible to do?
cause i don't like the idea to store artist art in every album folder
Title: artist art location
Post by: WilB on 2013-01-20 19:38:15
Try something like the following but adapted to your path and assuming the jpg is saved as the artist name.

C:\artists\%artist%.jpg
Title: artist art location
Post by: db1989 on 2013-01-20 20:13:34
i've tried adding "../artist.jpg" to patterns, but it doesn't work
I don’t know whether fb2k supports relative path-names in this context, but note that Windows separates folders by backward slashes, not forward.
Title: artist art location
Post by: marc2003 on 2013-01-21 09:17:47
I don’t know whether fb2k supports relative path-names in this context


it does.

Quote
but note that Windows separates folders by backward slashes, not forward.


yup, that works. this displays art from the parent folder....

Code: [Select]
..\artist.jpg


Title: artist art location
Post by: $ergi0 on 2013-01-21 14:46:10
wow
thanks, guys, i can't believe that was the problem