Mediafile videoResolution export with movie info
#1
I am trying to do a simple CSV export of my movies and want to add the mediafile.videoResolution to the output.  Can't figure out the syntax to do this.  Any help would be appreciated...

Code:
sep=,${-- first line defines fixed separator char; US defaults to "," non-US to ";" }
${foreach movies movie}${movie.title},${movie.year},${movie.certification},${movie.mediafile.videoResolution},${movie.path}
${end}
#2
Use something like this in place of the field:
 
Code:
${foreach movie.videoFiles video}${video.videoResolution}${end}
#3
Worked perfectly. thanks!

Logout Mark Read Team Forum Stats Members Help
Mediafile videoResolution export with movie info0