im trying to get filebot also process edl and vdr files from my personal recordings and comskipped files ...
actually it looks i have some filter cause these files are not even processed at all, they just stay untouched in the /input ...
my config looks like this
Code: Select all
SCRIPTS_TO_DOWNLOAD=(
MUSIC_FORMAT="MP3/{n}/{album}/{media.TrackPosition.pad(2)} - {t}"
MOVIE_FORMAT="{file =~ /(?i)AC3D|dubbed|.ld.|WebHD/ ? 'VCD' : 'HDDVDR'}/{n} {y}/{n} {y} {vf} {' CD'+pi}{'.'+lang}"
SERIES_FORMAT="TVRIPS/{n}/{episode.special ? 'Special' : 'S'+s.pad(2)}/{n} - {episode.special ? 'S00E'+special.pad(2) : s00e00} - {t.replaceAll(/[!?.]+$/).replacePart(', Part $1')}{'.'+lang}"
. /files/FileBot.conf
if [ "$SUBTITLE_LANG" == "" ];then
SUBTITLE_OPTION=""
else
SUBTITLE_OPTION="subtitles=$SUBTITLE_LANG"
fi
VERSION=4
. /files/pre-run.sh
filebot -script fn:amc -no-xattr --output /output --lang de --log-file /files/amc.log --action move --conflict auto \
-non-strict --def minsize=1 ut_dir=/input ut_kind=multi music=y deleteAfterExtract=y clean=y \
excludeList=/config/amc-exclude-list.txt $SUBTITLE_OPTION \
movieFormat="$MOVIE_FORMAT" musicFormat="$MUSIC_FORMAT" seriesFormat="$SERIES_FORMAT"
...
for any tips thanks ahead.
Rest working superb so far ... thanks alot for this nice software.