How export videofile details from TVshows?

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.