Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: Help with Album Art Panel source please (Read 3134 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

Help with Album Art Panel source please

This is my typical directory structure for multi-disc album.

under C:\artist name - album title\
CD1\CDimage1.flac
CD2\CDimage2.flac
scan\front.jpg, back.jpg, etc...

album art files are in the 'scan' folder.

what string is needed in the source list to display the files in the 'scan' folder?

Thanks in advance.

Help with Album Art Panel source please

Reply #1
If you don't mind which order the images are shown:
c:\%artist% - %album%\scan\*.jpg

If you use multiple image formats:
c:\%artist% - %album%\scan\*.*

If you want the images shown in a specific order and use multiple formats:
c:\%artist% - %album%\scan\front.*
c:\%artist% - %album%\scan\back.*
etc...

C.
PC = TAK + LossyWAV  ::  Portable = Opus (130)

Help with Album Art Panel source please

Reply #2
If you don't mind which order the images are shown:
c:\%artist% - %album%\scan\*.jpg

If you use multiple image formats:
c:\%artist% - %album%\scan\*.*

If you want the images shown in a specific order and use multiple formats:
c:\%artist% - %album%\scan\front.*
c:\%artist% - %album%\scan\back.*
etc...

C.


thanks to your response

but the probelem is folder name is not match with %artist% - %album%.
so what i am looking for is some script working like dos command.
ex)cd.. - dos command to change to the upper directory.

Help with Album Art Panel source please

Reply #3
Try this:
C:\$directory(%path%,2)\Scan\front.jpg

$directory(%path%,1) will output name of directory the song is in, i.e. CD1, CD2, etc.

$directory(%path%,2) will output name of directory above CD1, CD2 and so on.

Help with Album Art Panel source please

Reply #4
Try this:
C:\$directory(%path%,2)\Scan\front.jpg

$directory(%path%,1) will output name of directory the song is in, i.e. CD1, CD2, etc.

$directory(%path%,2) will output name of directory above CD1, CD2 and so on.


s33m33 Thanks a lot
this is what i need.