Template to export ALL avaible fields into Excel
#5
Hi, finally from you tip "{movie.mainVideoFile}" I was able to extract MediaFile information.

Just for the record, in case anyone else have the same problem, I solved with this line bellow my old code:

    <Cell><Data ss:Type="String">${movie.mainVideoFile.filename}</Data></Cell>
    <Cell><Data ss:Type="String">${movie.mainVideoFile.extension}</Data></Cell>
    <Cell><Data ss:Type="String">${movie.mainVideoFile.durationHM}</Data></Cell>

Now... If I want to add besides, just the name of all actors in the movie, how do I have to do it?

If I write this I have a bunch of data that I dont want, as character, name, role and thumburl.

<Cell><Data ss:Type="String">${movie.actors}</Data></Cell>

How can I get JUST name of movie actors?

I tried this but It didn't work:

<Cell><Data ss:Type="String">${movie.actors.name}</Data></Cell>

Any tips?


Messages In This Thread
RE: Template to export ALL avaible fields into Excel - by jhoyos - 2019-05-29, 09:09
Logout Mark Read Team Forum Stats Members Help
Template to export ALL avaible fields into Excel1