Tagged: categories, EXIF, supplementary categories
-
AuthorPosts
-
March 19, 2016 at 5:23 am #26162
AnonymousHi All,
I found this feature in the plugins/symbiostock/readme.txt:
* Added feature: Metadata reading now includes the Supplemental Categories field and will add images to and create categories for them.
I can’t seem to get this to assign images to an existing category or to create a new one.
Here’s what I’ve tried:
– Imported with and without custom EXIF metadata configured via Settings ->”Read Extra Metadata” and “Force Meta”.
Using the following fieldnames: SupplementalCategories and Category. I found “Category” fieldname in tools-ftp.php while debugging and thought to test it out.– Confirmed the image(s) have the fieldname by checking with exiftool shipped with Symbiostock:
$ ./exiftool ../../../../ss_media/ss_1806.jpg | egrep "Object|Keywords|Supp" Object Name : Alexandra-(99) Keywords : alexandra, shaykh Supplemental Categories : Alexandra
– Symbiostock has read/write access to image EXIF. Confirmed through Setting tests as well as viewing image EXIF data. The fieldnames “Keywords” and “ObjectName” above was populated by Symbiostock.
This will greatly help as I’m about to begin importing 1500 photos 🙂
Regards,
RossMarch 24, 2016 at 2:18 pm #26223March 24, 2016 at 2:27 pm #26224Try going to tools-ftp and edit the code to look like this:
if (!$keywords && isset($metadata->Subject)) $keywords = $metadata->Subject; if (isset($metadata->SupplementalCategories)) { if (!is_array($metadata->SupplementalCategories)) $category[] = $metadata->SupplementalCategory; else $category = array_merge($metadata->SupplementalCategories,$category); } if (isset($metadata->SupplementalCategory)) { if (!is_array($metadata->SupplementalCategory)) $category[] = $metadata->SupplementalCategory; else $category = array_merge($metadata->SupplementalCategory,$category); } }
March 24, 2016 at 10:46 pm #26229
AnonymousHi Robin,
Thanks so much, I will try again when back from holiday over the Easter Weekend!
Chat soon,
RossMay 13, 2016 at 6:38 am #26628Hi, I’m having the same problem as Ross however the code supplied above is already present in the tools-ftp file.
I’ve had a look at the details of the files where I’ve added supplemental categories (with Photoshop CS6) using exiftool and they seem to be correct.
Other metadata, title for example, is being read OK. The wizard shows the metadata can both be read and written by Symbiostock.
Any ideas what I could try next?
Many thanks,
Pete
September 7, 2016 at 4:53 am #27811Like Pete I am also having issues with this, I’ve tried every variation of settings.
The supplementary category exists when I download the image through my shop but Symbiostock appears to ignore it?
Could it be something server side?
September 7, 2016 at 7:26 am #27812September 8, 2016 at 2:01 pm #27857September 28, 2016 at 6:11 pm #28229Hi all, i like this discussion but my understanding is a bit poor 🙂 i will try to fill my SupplementalCategories via exiftool, but assigning the Media to existing or new categories is not working without extra code? Will this become a feature in further Versions?
September 28, 2016 at 8:29 pm #28230September 28, 2016 at 9:23 pm #28231Hi Robin, for the moment i’ve been testing a platform outside my home-Site and symzio: myBiday is based on counting Images and Categories. In case that Symbiostock can categorise via Metadata will be a big plus. I hope that will be a bit clear.
September 29, 2016 at 12:31 am #28232September 29, 2016 at 3:32 am #28237uh, YES, .. it works. 🙂
-
AuthorPosts
You must be logged in to reply to this topic.