AMC doesn't clean up - metadata files

Any questions? Need some help?
Post Reply
appp
Posts: 4
Joined: 12 Sep 2013, 22:25

AMC doesn't clean up - metadata files

Post by appp »

Hello,
I modified the output by using arguments. Now it it doesn't clean up metadata after the files it moved.
Here is the log file http://pastebin.com/Ppfm9w8r
My parameters:

Code: Select all

filebot -script fn:amc --output "F:/media" --log-file amc.log --action copy --conflict override -non-strict --def clean=y "seriesFormat=Z:/{n}/{episode.special ? \"Special\" : \"Season \"+s.pad(2)}/{n} - {episode.special ? \"S00E\"+special.pad(2) : s00e00} - {t.replaceAll(/[`´‘’ʻ]/, \"'\").replaceAll(/[!?.]+$/).replacePart(', Part $1')}{\".$lang\"}" "movieFormat=X:/{n} ({y})/{n} ({y}){\" CD$pi\"}{\".$lang\"}" music=y subtitles=en,nb,no,se,sv,dk artwork=y clean=y "ut_dir=%D" "ut_file=%F" "ut_kind=%K" "ut_title=%N" "ut_label=%L" "ut_state=%S"
EDIT:
Leftover files are:
.eng.srt:filename
.eng.srt:metadata
.mp4:filename
.mp4:metadata
.srt:filename
.srt:metadata
Last edited by appp on 13 Sep 2013, 16:43, edited 2 times in total.
User avatar
rednoah
The Source
Posts: 22998
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: AMC doesn't clean up

Post by rednoah »

That's filesystem extended metadata, not files. Shouldn't be possible for metadata to exist without the file. What operating system?
:idea: Please read the FAQ and How to Request Help.
appp
Posts: 4
Joined: 12 Sep 2013, 22:25

Re: AMC doesn't clean up

Post by appp »

Windows Server 2008 R2
Mounted disks as NFS-shares (It may have to do with that??) over network
EXT4 partition scheme on the drives where it's located.

EDIT:
I will try SMB instead.

EDIT 3:
It's back again, how do I solve this?
User avatar
rednoah
The Source
Posts: 22998
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: AMC doesn't clean up - metadata files

Post by rednoah »

Somehow in your setup xattr paths are resolved incorrectly as actual file paths rather than interpreted and store metadata. The : would be an illegal character on Windows and the whole thing is done somewhere deep down in Java / Windows APIs.

The easiest way would be to just turn of xattr via -no-xattr flag. Maybe turning on xattr support for samba could work as well.
:idea: Please read the FAQ and How to Request Help.
Post Reply