Groups-xml en
From Ultimate Media Collector (UMC) - Wiki
Under construction
In the „Group.xml“ (Download here » http://www.popcornforum.de/showthread.php?tid=7545&page=1 ) you can declare all needed informations to create a movie group.
The <sort>-tag is basic and has to be declared!
Groups could be created in two ways:
- In the scan-library you could make the content (all movies inside) of a directory or a sub-directory to a group. The group-name (title) is the directory-name, the cover has to be the pattern [Cover]. --> Groupname[Cover].jpg
- You can use the Groupname[Group].xml:
The Group.xml is recognized with the pattern [Group] --> "Groupname[Group].xml" and can be in a optional directory. This directory has to be defined as a library with Scan-Type "for nfo-xml-files" or "for images and NFOs"!
Attention: The pattern are case-sensitive, take care of upper and lower case!!
<?xml version="1.0" encoding="UTF-8"?> <group xmlns="http://www.umc-project.de/xmlbeans"> <!-- Here you can declare the desired movie-group title. --> <title>Terminator</title> <!-- This tag is to sort the movie-group members in the frontend. "year" means that the members are sorted by production year and "xml" means that the members are sorted like you declared the order in the tag-block <members>. If the <sort>-tag is empty the default-value is "year"! --> <sort>year</sort> <!-- empty picture-tags denote that UMC tries to get them from the internet These tags are the same for movie-xml, series-xml and group-xml. The pictures don't have to be in a scan-library. --> <banner></banner> <cover>c:/picture/movies/Terminator chops Lukas.bmp</cover> <poster></poster> <backdrop>d:/nice backdrops/Terminator-trilogy.jpg</backdrop> <members> <movie>c:/movies/Terminator.avi</movie> <movie>d:/new movies/Terminator2.avi</movie> <movie>e:/archive/SciFi/Terminator3.avi</movie> </members> </group>

