How export videofile details from TVshows?
#1
I use that list for movies:

Code:
${foreach movies movie}
   ${foreach movie.videoFiles vf}
      "${vf.path}\\${vf.filename}";"${vf.videoCodec}";"${vf.videoWidth}";"${vf.videoHeight}"
   ${end}
${end}

I would like to get that list exported for TVshows as well. How dod I do that? That did not work:

Code:
${foreach tvShows show}
   ${foreach show.videoFiles vf}
      "${vf.path}\\${vf.filename}";"${vf.videoCodec}";"${vf.videoWidth}";"${vf.videoHeight}"
   ${end}
${end}

Thanks in advance.
#2
there are two problems here:

a) a video file is not associated to a show, but to an episode inside the show (so you need another loop in the show to get the episodes)
b) getVideoFiles is not implemented in the episode entity ;D (added that for the next version)
tinyMediaManager - THE media manager of your choice - available for Windows, macOS and Linux
Help us translate tinyMediaManager at Weblate | Translations at 66%
Found a bug or want to submit a feature request? Contact us at GitLab
#3
Ah, I see. Will wait.

BTW, there's need to update the Wiki page with the possible export fields. "videoFiles" is missing for example.

Thanks a lot.

Logout Mark Read Team Forum Stats Members Help
How export videofile details from TVshows?0