I'm working on automating some video conversion. atm, I've a DOS batch file that selects files based on their labelled category and sends those files to the appropriate video converter .xml files. Those xml files have different input/output paths, based on the category again (ie: concerts, tv show, documentary, etc.
Currently, this looks like:
<inputFolders>
<folder>D:\Media\showRSS\Shows</folder>
<filter>*.mkv</filter>
<includeSubfolders>true</includeSubfolders>
</inputFolders>
<outputPath>D:\Media\Filebot\Shows</outputPath>
Is it possible to append a variable directory name to the input and output directories?
such as:
<inputFolders>
<folder>D:\Media\showRSS\Shows\%name%</folder>
<filter>*.mkv</filter>
<includeSubfolders>true</includeSubfolders>
</inputFolders>
<outputPath>D:\Media\Filebot\Shows\%name%</outputPath>