File stacking
XBMC's file stacking feature handles your multi-part videos in a clean, intuitive manner. File stacking combines your multi-part files into a single item in the file list or library. Playback of stacks is completely transparent to you as the user, all parts are automatically queued for playback in order. Stacking is a view option available in videos file mode window. It is always applied when scanning movies into the library.
1 How does file stacking work?
The stacking function is presented with a list of file items from a directory listing.
- Sort the file list alphabetically.
- CD1, CD2, ..., CD9 directories are collapsed if they contain only one video file. (Only for "fast" sources, i.e. local, LAN, ...)
- Each filename is tokenized into Title, Volume, Ignore and Extension parts.
- For each consecutive filename where all tokens except Volume match, the file's index in the file list is stored in a vector.
- Once the above condition fails...
- The stack path is generated (eg. "stack://movie-cd1-xvid.avi , movie-cd2-xvid.avi")
- The stack name is created from the Title Ignore and Extension tokens (eg. movie-xvid.avi)
- The path and label of the first file item are replaced by the stack path and stack name, respectively.
- The remaining file items in the stack are removed from the file list.
- This continues until the file list is exhausted.
2 Limits
- Stacking is currently only applied to movies.
- Stacking is currently only applied to filenames, not the full path.
- The default expressions will NOT stack files which use only a number as the volume token (eg movie1.avi, movie2.avi). This is intentional due to false positives which can occur with sequels in a flat directory layout. Some solutions to this problem (in order of best to worst) follow...
- Use a dir-per-movie directory layout, see the append example of the moviestacking advanced setting.
- Rename offending files to match one of the more specific volume tokens (ie. cd1, part1, etc).
- Create special-case regular expressions for those files that fail to stack (see #Fine tuning).
3 Fine tuning
File stacking can be tuned by the user to match obscure cases using the moviestacking advancedsettings.xml setting:
- <moviestacking>
This is used by the File Stacking algorithm to combine multi-part files and contains a list of "Regular Expressions"
As of XBMC v9.11, video stacking regular expressions must contain exactly four (4) capture expressions. Old ones and three capture expressions are dropped (see log). More information on how the algorithm works is available here.
Default:
<moviestacking> <!-- <cd/dvd/part/pt/disk/disc/d> <0-N> --> <regexp>(.*?)([ _.-]*(?:cd|dvd|p(?:ar)?t|dis[ck]|d)[ _.-]*[0-9]+)(.*?)(\.[^.]+)$</regexp> <!-- <cd/dvd/part/pt/disk/disc/d> <a-d> --> <regexp>(.*?)([ _.-]*(?:cd|dvd|p(?:ar)?t|dis[ck]|d)[ _.-]*[a-d])(.*?)(\.[^.]+)$</regexp> <!-- movienamea-xvid.avi, movienameb-xvid.avi --> <regexp>(.*?)([ ._-]*[a-d])(.*?)(\.[^.]+)$</regexp> </moviestacking>
If the argument action="append" or append="yes" is supplied, the default moviestacking regular expressions will remain intact and the user specified ones will be added to the end.
Example:
<moviestacking action="append"> <!-- This expression will match movename1-xvid.avi, moviename2-xvid.avi. Be warned that it will likely stack sequels in a flat directory layout, so it is only recommend in a dir-per-video layout. --> <regexp>(.*?)([ ._-]*[0-9])(.*?)(\.[^.]+)$</regexp> </moviestacking>
If the argument action="prepend" is supplied, the default moviestacking regular expressions will remain intact and the user specified ones will be added to the beginning.
Example:
<moviestacking action="prepend"> <regexp>(Title)(Volume)(Ignore)(Extension)</regexp> </moviestacking>
If no argument is supplied, or the argument append="no" is supplied, the default moviestacking regular expressions are overwritten by the user specified ones.
| |
File Stacking multiple CD's forum thread discussion |