Hi there,
I have a question about the export function. I want to create NFO files for each mp4 file in recursive folders. So far I have this:
$filename(%_filename%.nfo)<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<movie>
<title>%title%</title>
<sorttitle>%_filename%</sorttitle>
<actor>
<name>%artist%</name>
</actor>
</movie>
The problem with this method is that it only creates one nfo file in each folder, and not seperate files. Also it outputs the file in the root folder and not in the recursive folders (for each artist there is a separate folder).
Can someone assist me with this?
Thanks