First of all thanks for this awesome program and sorry in advance for my English (I'm French

For you to understand, i'm trying to implement Filebot on my server and use it to automatically rename the downloaded medias.
I think that I spend approx 10h looking at the forum (and other in French) trying to understand how this tool is working and now I'm at a point that I do not understand.
Behaviour with non media file
i tried to understand and find the information but I failed.
I will use filebot together with rutorrent so that once the download is completed, Filebot is launched and process the file
What happens if the completed download is not a media but a commun file like a pdf, an ISO or a video like a TV show that is not supported?
Do i have to put in one folder all the files that will be surely renamed and in another folder all the file that I know would failed the renaming ?
This point is very unclear for me.
Arguments not understood
The script that will be launched is the following (found it in a tutorial, I'm not the creator):
Code: Select all
#!/bin/bash
TORRENT_PATH=$1
TORRENT_NAME=$2
TORRENT_LABEL=$3
sh /home/<username>/.filebot/filebot.sh --lang fr -script fn:amc --output "/home/<username>/Media" --log-file "/home/<username>/.session/amc.log" --action symlink --conflict override -non-strict --def music=y artwork=y "ut_dir=$TORRENT_PATH" "ut_kind=multi" "ut_title=$TORRENT_NAME" "ut_label=$TORRENT_LABEL" &
Code: Select all
"ut_dir=$TORRENT_PATH" "ut_kind=multi" "ut_title=$TORRENT_NAME" "ut_label=$TORRENT_LABEL" &
What I understood is that the above script is not naming or acting the way i want, so, even if this is not the rule of the forum, can someone confirm me that for having the following structure...
Code: Select all
/home/<username>/Media
....|----Films
...........|----Movie 1 (Year)
...........|----Movie 2 (Year)
...........|----etc..
....|----TVShow
...........|----TVShow1 - S01E04
...........|----TVShow2 - S10E02
...........|----etc..
Code: Select all
sh /home/<username>/.filebot/filebot.sh --lang fr -script fn:amc
--output "/home/<username>/Media"
--log-file "/home/<username>/.session/amc.log"
--action symlink --conflict override -non-strict
--def "seriesFormat={output}/Series/{n} - {s00e00}" "movieFormat={output}/Films/{n} ({y})"
"ut_dir=$TORRENT_PATH" "ut_kind=multi" "ut_title=$TORRENT_NAME" "ut_label=$TORRENT_LABEL" &
Code: Select all
def "seriesFormat={output}/Series/{n} - {s00e00}" "movieFormat={output}/Films/{n} ({y})"
"ut_dir=$TORRENT_PATH" "ut_kind=multi" "ut_title=$TORRENT_NAME" "ut_label=$TORRENT_LABEL" &