Would you help me understand...
I think I am running into occasional naming issues because of the net.filebot.metadata attributes on some existing files.
I have never had a subtitle that was not considered "orphaned" so I don't have an example of what the extended attributes would look like on a "non-orphaned" .srt file.

Would you please provide an example of the net.filebot.metadata values on a non-orphaned .srt file

I ran a command to find
net.filebot.metadata extended attributes on all of my .srt files:
Code: Select all
$ find . -iname "*.srt" | while read -r file; do `xattr -l "$file" | grep "type" >> /Users/john/Desktop/filebotmeta1.txt` ; done
It shows I have these two types (MoviePart and Movie)
Code: Select all
net.filebot.metadata: {"@type":"MoviePart","partIndex":2,"partCount":2,"year":1988,"imdbId":94721,"tmdbId":4011,"language":"en","id":4011,"name":"Beetlejuice","aliasNames":[]}
Code: Select all
net.filebot.metadata {"@type":"Movie","year":1964,"imdbId":58777,"tmdbId":0,"id":58777,"name":"Zulu","aliasNames":[]}
Apparently at some point I changed the amc script (removed --conflict index -non-strict, or I post processed some of these files using the GUI) and now they — and I am assuming their associated .mp4 files — are "MoviePart" files.

What is the best way to change these files back to "Movie" files? Edit or remove the xattr and reprocess?
In the GUI when I use {json} binding on the same files (where the CLI command xattr -l shows type "MoviePart") I get different values.
However, using the {xattr} binding on the same files shows "Beetlejuice (1982) [CD2]" for both the srt and the mp4. That would indicate it is a "MoviePart"