Page 1 of 1

AMC unsorted folder as Movies or TV Series?

Posted: 29 Dec 2016, 17:16
by aj1216
In --def unsortedFormat:
1. Is it possible to add Movies or TV Series to the filename/folder based on the amc recognition?
2. Or use the original folder structure to define the above? Original structure is:
/home/aj/qBittorrent/Finished/Movie
/home/aj/qBittorrent/Finished/Series
/home/aj/qBittorrent/Finished/Manual

Re: AMC unsorted folder as Movies or TV Series?

Posted: 29 Dec 2016, 17:23
by rednoah
1.
No, because unsorted files are files where auto-detection has failed already. You can have your own filename-based heuristics in your unsorted format of course.

e.g.

Code: Select all

file.isEpisode() ? 'Episode' : 'Not an Episode'

2.
You can pass in your own unsorted format so you have access to the current path and retain the bits and pieces you want.

e.g.

Code: Select all

folder.name

Re: AMC unsorted folder as Movies or TV Series?

Posted: 29 Dec 2016, 17:44
by aj1216
Thanks, will try those..