Hello all,
I have finally found the time to automate some stuff and managed to get a docker container working with sabnzbd and filebot-node. Both work but I have a small problem with the latter. The amc script moves the series and movies to TV Series and Movies folders, respectively. My library is arranged in tv_series and movies folders unfortunately and it is nicely configured in jellyfin.
Is there a way for me to change the amc script inside the docker container, or the command that it is being run to move the files to tv_series and movies, respectively? I would hate to make all the changes in jellyfin.
I have been using filebot for years and even have a lifetime license. I love this software! It is one of those gems without which live would be so tedious!
Regards,
Lucian
amc script move to movies instead of Movies
Re: amc script move to movies instead of Movies
e.g.
Automated Media Center › Change how files will be organized and renamed
FileBot Node Reference Manual › Format Options
Shell: Select all
--def movieFormat="movies/{ ~plex.id }" seriesFormat="tv_series/{ ~plex.id }"


Re: amc script move to movies instead of Movies
thank you for your reply,
I have modified in the formatting options like so:
Movies format: /mediastore/movies/{ jellyfin.id } (mediastore is the place where all my media resides)
Series format: /mediastore/tv_series/{ jellyfin.id }
And in the dryrun it tries to move a movie to: /mediastore/movies/Movies/...
What am I not doing right?
I have modified in the formatting options like so:
Movies format: /mediastore/movies/{ jellyfin.id } (mediastore is the place where all my media resides)
Series format: /mediastore/tv_series/{ jellyfin.id }
And in the dryrun it tries to move a movie to: /mediastore/movies/Movies/...
What am I not doing right?
Re: amc script move to movies instead of Movies
I got it!
I had to use {jellyfin.name} not {jellyfin.id}!
I had to use {jellyfin.name} not {jellyfin.id}!
Re: amc script move to movies instead of Movies
nope... if was {jellyfin.tail}
Re: amc script move to movies instead of Movies
e.g.
You somehow removed the ~ when you changed ~plex to jellyfin. The ~ removes the leading Movies / TV Series bit. See {plex} format for details.
Shell: Select all
--def movieFormat="movies/{ ~jellyfin.id }" seriesFormat="tv_series/{ ~jellyfin.id }"
