The drive that had the brightauthor directory for my project died. I had multiple zones configured, and would like to duplicate the project. From the info pulled from the player's SD card, is there a way to determine the zone sizes and locations (ex. length, width, height, x / y coordinates)? I've looked through some of the xml files, but have been unable to locate this info. Thanks!
2 comments
-
JRB Technical It's a little convoluted, but not too hard.
So, depending on how they were set up, you should have a local-sync.xml file, or similar sync file in the root of the SD card.
Open that, and look for <files> and below that look for <name>autoplay-(name of your project).xml<name>
Right below that will be something that looks similar to this (will always be different because of the hash):
<files>
<download>
<name>autoplay-zone test.xml</name>
<hash method="SHA1">bc5c63dda4fc12c0214e2e3313c8c7319cca696b</hash>
<size>17005</size>
<link>pool/6/b/sha1-bc5c63dda4fc12c0214e2e3313c8c7319cca696b</link>
</download>Hash is the SHA1 hash for the file
Size is the file size
Link is where this file is stored on the SD card, with the HASH as it's new name.Then look at the path for the link, it will be "pool/(some letter or number)/(some letter or number)/sha1-(the hash, a long mix of numbers and letters), open the pool folder and the corresponding sub folders as shown in the link address.
Open that file with a text editor.
Then look for <zones>, each of your zones information will be below that
<zones>
<zone>
<name>Video or Images</name>
<x>0</x>
<y>0</y>
<width>1638</width>
<height>864</height>
<type>VideoOrImages</type>
<id>1</id>
<zoneSpecificParameters>
(etc. all the other parameters for the zone will be listed)
</zone> -
Jparks That worked. Thanks!