AniDB O'Matic - Documentation: Local file renaming: Difference between revisions
Line 33: | Line 33: | ||
==Sample patters== | ==Sample patters== | ||
{| | |||
|English title with fallback||set('title', at('en'))<br>if(length(title)=0, set('title', at('x-jat')))<br>if(length(title)=0, set('title', at('x-jat', 'short')))<br>if(length(title)=0, set('title', at('ja'))) | |||
==Objects== | ==Objects== |
Revision as of 10:36, 20 May 2011
File renaming patterns
AoM contains a comprehensive number of patterns to fully customize file names and paths. In order for the pattern to allow very complex rules it essentially allows light scripting. The path can be a complete path or a partial path, in case of a partial path the current file manager is used to place the file based on a known root or from the root folder of the file manager, see file managers below for more details. File extensions are automatically added to the end of the pattern.
Here's a few sample patterns:
- "?a - ?ep - ?e [?g]" ->
"Anime - 02 - Episode name [Group name]" - "?a - ?epv?v - ?e?if(lg<>'', ' ['+lg+']', '')" ->
With group: "Anime - 02v1 - Episode name [Group name]"
Without group:"Anime - 02v1 - Episode name" - "?if(wltw, 'To watch\', '')?a?if(isMovie, if(epps>1, ' - Part '+epp+if(v>1, 'v'+v, ''), if(v>1, ' - v'+v, '')), ep+if(v>1, v, '')+'- ?e') ?if(lg<>'', lg+' ', ''){?crc32}" ->
For a movie: "Anime name - v2 [Group name]{crc32}"
For a movie with 2 parts: "Anime name - Part 2v2 [Group name]{crc32}
For a normal anime, marked as "to watch in wishlist": "To watch\Anime name - 02v2 - Episode name [Group name]{crc32}
Default pattern
Split into multiple lines for easier viewing. ;)
?set('V', if(v>1, 'v'+v, ''))
?set('A', a)
?set('E', if(isMovie and (eps=1), if(epps>1, if(length(V)>0, V+' - ', '')+'Part '+epp, if(length(V)>0, V, '')), if(eps>1, ep+V+' - '+e, if(length(V)>0, V+' - '+e, e))))
?set('LANG', la2+if((length(la2)>0) and (length(ls2)>0), '-')+ls2)
?set('LANG', if(length(LANG)>0, '('+LANG+')'))
?set('G', if(gid>0, g, if((lac<=1) and (lsc=0) and ((la='ja') or (la='')), '[RAW]')))
?set('CRC', if(length(crc)>0, '{'+crc+'}', ''))
?set('TAIL', join(' ', LANG, G, CRC))
?set('TAIL', if(length(TAIL)>0, ' '+TAIL))
?set('TOTLEN', length(A)+length(E)+length(TAIL))
?if(TOTLEN>240, if(length(E)>50, set(E, limit(E, max(50, 240-length(A)-length(TAIL))))))
?set('TOTLEN', length(A)+length(E)+length(TAIL))
?if(TOTLEN>240, if(length(A)>50, set(A, limit(A, max(50, 240-length(E)-length(TAIL))))))
?out(A+if(length(E)>0, ' - '+E)+TAIL)
The end result is all lines merged with the line feeds removed.
Sample patters
English title with fallback | set('title', at('en')) if(length(title)=0, set('title', at('x-jat'))) if(length(title)=0, set('title', at('x-jat', 'short'))) if(length(title)=0, set('title', at('ja'))) ObjectsA / ANIME
E / EPISODE
F / FILE
G / GROUP
H / HASH
M / MYLIST
Functions
OperatorsArithmetic operators
Comparison operators
Logical operators
Constant expressionsThere are two ways to specify string literals: Number literals are simply written as numbers: File managersFile managers are used to automatically manage file renaming / removing and adding / updating files in your MyList. Source pathsEach file manager can have multiple source folders. File managers can be set to search these folders recursively or only the folder itself for files. While it's possible adding a source path to multiple file managers is strongly discouraged. Rename patternEach file manager can have 1 renaming pattern. To use multiple patterns you need to specify multiple patterns. The rename pattern can contain a part of a path or a full path to indicate where the file should be stored. The path part of a rename might be ignored under certain circumstances however, see below. Target pathsA file manager can have one or more target paths for moving files. If no target path is specified the folder the file was found in will be used instead. If there are multiple target paths the file manager will try to figure out where the file has the most related files. This is determined by a) the anime the file belongs to and b) the anime group the file belongs to. If there's not enough space available on the target drive it'll check the next preferred target if there's enough space and so on. If no space is available in any target path the file will be renamed in it's current location, but with any path part of the file removed, aka the filename part of the rename pattern will be used but the file will remain in the folder it was found in. Only move known filesThis will make the file manager ignore files which are not in AniDB, they'll be visible on the known files page, but they will never be moved or renamed. Automatically remove deleted filesThis will make the file manager remove files it can't find any more from the known files page. This rule ignores files stored on removable media. Don't remove files if the volume can't be foundThis will prevent the file manager from removing files it can't find when the whole volume is gone, this rule would for example prevent your known files from being cleared if your network cable is unplugged or a HDD is disconnected. Add new files to AniDBThis will make the file manager automatically add found files to your MyList. Automatically update the storage field of MyList entriesThis will make the file manager automatically update the storage field of MyList entries based on the volume it's stored on. This field currently only works for files on a removable storage such as a DVD. The label used will be the label of the removable media, e.g. DVD #013. Automatically mark found files as OnHDD or OnRemovable in MyListThis will make the file manager update your MyList to OnHDD if the file was found on a HDD or Network drive, or OnRemovable if the file is on a CD/DVD. Automatically mark removed files as Deleted in MyListThis will make the file manager update your MyList to indicate the file has been deleted if removed by the above rule. |