I'd like to do it command line via ssh but I'm having a difficult time figuring out the proper commands. I played with the windows client and that's super easy but I'd llike to avoid having to transfer all the files back and forth.
My game plan on the server side is to transfer files I want to process into a temporary folder for input processing located at /mnt/shared/Media/Process/input
I want to rename folders and files using jellyfin.id format
I want filebot to move the processed files into the /mnt/shared/Media/Process/Done directory in either the Movies subfolder or the Series subfolder depending on what it is
So I came up with this args.txt file and plan on just running
Code: Select all
filebot @args.txt
Code: Select all
-script
fn:amc
/mnt/shared/Media/Process/input
--output
/mnt/shared/Media/Process/Done
--action
duplicate -non-strict
--def
movieDB=TheMovieDB
seriesDB=TheMovieDB::TV
movieFormat=Movies/{ ~jellyfin.id }
seriesFormat=Series/{ ~jellyfin.id }
Thanks in advance!