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
AMC unsorted folder as Movies or TV Series?
Re: AMC unsorted folder as Movies or TV Series?
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.
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.
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?
Thanks, will try those..