Page 1 of 1

amc script move to movies instead of Movies

Posted: 22 Jan 2024, 11:16
by lucian
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

Re: amc script move to movies instead of Movies

Posted: 22 Jan 2024, 11:20
by rednoah
e.g.

Shell: Select all

--def movieFormat="movies/{ ~plex.id }" seriesFormat="tv_series/{ ~plex.id }"


:arrow: Automated Media Center › Change how files will be organized and renamed

:arrow: FileBot Node Reference Manual › Format Options

Re: amc script move to movies instead of Movies

Posted: 22 Jan 2024, 11:51
by lucian
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?

Re: amc script move to movies instead of Movies

Posted: 22 Jan 2024, 12:00
by lucian
I got it!

I had to use {jellyfin.name} not {jellyfin.id}!

Re: amc script move to movies instead of Movies

Posted: 22 Jan 2024, 12:08
by lucian
nope... if was {jellyfin.tail}

Re: amc script move to movies instead of Movies

Posted: 22 Jan 2024, 12:18
by rednoah
e.g.

Shell: Select all

--def movieFormat="movies/{ ~jellyfin.id }" seriesFormat="tv_series/{ ~jellyfin.id }"
:idea: You somehow removed the ~ when you changed ~plex to jellyfin. The ~ removes the leading Movies / TV Series bit. See {plex} format for details.