extrapolate file name thumb
#1
hi I would like to know which command allows me to retrieve the name of the jpg .thumb file

for video use: ep.mainVideoFile.filename

i couldn't figure out how to extract the thumb image name

forgive my english
#2
Do you mean episode thumb filename?

Try this:
Code:
${ep.artworkMap.THUMB.filename}
#3
(2021-03-18, 06:32)tars Wrote: Do you mean episode thumb filename?

Try this:
Code:
${ep.artworkMap.THUMB.filename}
thanks a lot friend, it was just what I was looking for.

I ask for one last information.

I use this instruction $ {ep.mediaInfoAudioLanguageList}

to extrapolate the list of languages, unfortunately the list is formatted as follows [eng, ita]

I wish I could find a method to remove the square brackets [] or alternatively replace them with round brackets ()
#4
Try this:

Code:
${foreach ep.mediaInfoAudioLanguageList lang , }${lang}${end}
#5
(2021-03-18, 07:03)Aikanairo Wrote:
(2021-03-18, 06:32)tars Wrote: Do you mean episode thumb filename?

Try this:
Code:
${ep.artworkMap.THUMB.filename}
thanks a lot friend, it was just what I was looking for.

I ask for one last information.

I use this instruction $ {ep.mediaInfoAudioLanguageList}

to extrapolate the list of languages, unfortunately the list is formatted as follows [eng, ita]

I wish I could find a method to remove the square brackets [] or alternatively replace them with round brackets ()

it works! thank you, thank you and thank you again!
I wish I could repay

Logout Mark Read Team Forum Stats Members Help
extrapolate file name thumb0