Page 1 of 1

Two or more outputs.

Posted: 07 Jul 2015, 14:24
by warleywsc
I Have 3 HD`s. One for TV Shows (J:\SERIES) , one for Movies (M:\FILMES) and for Music (P:\MUSICAS). How can i define three different outputs?

Here's my current code:

Code: Select all

filebot -script fn:amc --output "J:\SERIES" --log-file amc.log --action move -non-strict --def "ut_dir=C:\DOWNLOADS\MEDIA\RENOMEAR\completos"  "ut_file=" "ut_kind=multi" "ut_title=%N" "ut_label=%L" "ut_state=%S"  --def excludeList=amc.txt "seriesFormat=j:/SERIES/{n}/Temporada {s.pad(2)}/{n}.{s00e00} - {t}" "movieFormat=Z:/Movies/{n} {y}/{fn}" --def deleteAfterExtract=y --def clean=y
.


Thanks in advance.

Re: Two or more outputs.

Posted: 08 Jul 2015, 16:20
by rednoah
Looks like you already figured it out, no?

Code: Select all

--def "movieFormat=Z:/Movies/{n} {y}/{fn}"
You can do the same for musicFormat, yes?

--output is required, but if you provide an absolute path as your format than that's where files are gonna go regardless of --output. Mind that --output may be used for other things as well, so it should point to a valid folder.

Re: Two or more outputs.

Posted: 09 Jul 2015, 03:31
by warleywsc
Thank you so much!