Hey, sorry for the noob question but I'm having a hard time finding the syntax for this.
After years of using (and fixing...) EventGhost I finally made the jump to just using the AMC script in tandem with uTorrent and it works great! What I'm looking to do is this: My media library is sorted in multiple folders for TV and Movies, ie, TV Shows, Kids TV Shows, Reality TV Shows, Movies, Kids Movies, Anime Movies, etc.
I was hoping there was a way using the AMC script to either change the renaming format (so as to change the output directory) based on the torrent label OR to integrate the label into the output format directly, as in, "X:/%L/{n}/Season {s}/{sxe - t}" or something.
Thanks for the help!
AMC - Change Format Based on Label
Re: AMC - Change Format Based on Label
Both approaches will work. You can use the {label} binding in your format if you want to do more complex checks.
Re: AMC - Change Format Based on Label
How exactly would I write that out in the script? I'm at work otherwise I'd try it, but my best guess is:rednoah wrote:Both approaches will work. You can use the {label} binding in your format if you want to do more complex checks.
Code: Select all
--filter "ut_label='Kids Movie'" --def movieFormat="M:/Kids Movies/{ny}/{fn}"
Code: Select all
--output "M:/%L"
Re: AMC - Change Format Based on Label
1.
--output "M:/%L" is probably less good of an idea, because --output must be a valid existing folder, which may not be the case depending on the value of %L.
2.
--filter doesn't do what you think it does: viewtopic.php?t=2127
3.
Here's what I'd do:
--output "M:/%L" is probably less good of an idea, because --output must be a valid existing folder, which may not be the case depending on the value of %L.
2.
--filter doesn't do what you think it does: viewtopic.php?t=2127
3.
Here's what I'd do:
Code: Select all
--output "M:" --def movieFormat="{label}/{plex.tail}"