Unable to access config'd custom xmp namespace in exiftool

Atlas Sullivan

Though some form of me just not really getting it, I am unable to write this custom XMP namespace I've made in my config file. Below is the file.

%Image::Exiftool::UserDefined = (
  'Image::ExifTool::XMP::Main' => {
    galex => { SubDirectory => { TagTable => 'Image::ExifTool::UserDefined::galex' }}
  }
);

%Image::ExifTool::UserDefined::galex = (
    GROUPS => { 0 => 'XMP', 1 => 'XMP-galex', 2 => 'Image' },
    NAMESPACE => { 'galex' => 'http://atlasjan.sdf.org/xml/galex.xsd' },
    WRITABLE => 'string', # default to string-type tags
    Include => { Writable => 'boolean' },
    Explicit => { Writable => 'boolean' },
    Spoiler => { Writable => 'boolean' },
    Comment => { Writable => 'string' },
);

So far I've tried...

exiftool -xmp:Explicit=true example.png
exiftool -xmp-galex:Explicit=true example.png

and both return a "not defined" error. Where am I going wrong?

StarGeek

The first line should be
%Image::ExifTool::UserDefined = (
not
%Image::Exiftool::UserDefined = (

The T needs to be capitalized in ExifTool. I copy/pasted your config file, fixed the T, and it appeared to work correctly for me.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How can I embed metadata into a custom XMP field with exiftool?

From Dev

Is it possible to create a custom namespace tag in XMP Dublin core metadata?

From Dev

Exiftool to create OSX visible XMP metadata in PNG images

From Dev

Unable to access Heroku environment config in dropwizard yaml config file

From Dev

How to access custom config variable in codeigniter controller

From Dev

How to access PHP internal classes from within a custom namespace

From Dev

Unable to access HttpServletRequest inside a custom MessageBodyWriter

From Dev

Unable to access custom tableviewcell button properties in Swift

From Dev

Firebase Remote Config with Namespace

From Dev

how to i create new exiftool tag for pdf files as using exiftool config file on gnu/linux?

From Dev

Access new Config file created in custom classes in Laravel5

From Dev

Unable to find the correct namespace?

From Dev

Unable to find the correct namespace?

From Dev

Unable to locate SystemManufacturers namespace

From Dev

Ajax success function unable to access within custom function

From Dev

Ajax success function unable to access within custom function

From Dev

Custom template namespace error

From Dev

XmlSerializer with custom namespace

From Dev

PHP Custom Namespace not working

From Dev

D3 - unable to access d.length in IF statement

From Dev

Upgrade Neo4j 2.3 to 3.4 - Unable to access jarfile 2.x-config-migrator.jar

From Dev

In Angular JS, How to access custom provider's function in module.config?

From Dev

Unable to create user namespace in RHEL

From Dev

Unable to assign variable on namespace scope

From Dev

Unable to config django for mysql

From Dev

unable to find `as` method in `Config`

From Dev

Custom ApiExplorer with Namespace based ApiControllers

From Dev

XML namespace for custom thymeleaf tags

From Dev

Composer: Require a package with custom namespace

Related Related

  1. 1

    How can I embed metadata into a custom XMP field with exiftool?

  2. 2

    Is it possible to create a custom namespace tag in XMP Dublin core metadata?

  3. 3

    Exiftool to create OSX visible XMP metadata in PNG images

  4. 4

    Unable to access Heroku environment config in dropwizard yaml config file

  5. 5

    How to access custom config variable in codeigniter controller

  6. 6

    How to access PHP internal classes from within a custom namespace

  7. 7

    Unable to access HttpServletRequest inside a custom MessageBodyWriter

  8. 8

    Unable to access custom tableviewcell button properties in Swift

  9. 9

    Firebase Remote Config with Namespace

  10. 10

    how to i create new exiftool tag for pdf files as using exiftool config file on gnu/linux?

  11. 11

    Access new Config file created in custom classes in Laravel5

  12. 12

    Unable to find the correct namespace?

  13. 13

    Unable to find the correct namespace?

  14. 14

    Unable to locate SystemManufacturers namespace

  15. 15

    Ajax success function unable to access within custom function

  16. 16

    Ajax success function unable to access within custom function

  17. 17

    Custom template namespace error

  18. 18

    XmlSerializer with custom namespace

  19. 19

    PHP Custom Namespace not working

  20. 20

    D3 - unable to access d.length in IF statement

  21. 21

    Upgrade Neo4j 2.3 to 3.4 - Unable to access jarfile 2.x-config-migrator.jar

  22. 22

    In Angular JS, How to access custom provider's function in module.config?

  23. 23

    Unable to create user namespace in RHEL

  24. 24

    Unable to assign variable on namespace scope

  25. 25

    Unable to config django for mysql

  26. 26

    unable to find `as` method in `Config`

  27. 27

    Custom ApiExplorer with Namespace based ApiControllers

  28. 28

    XML namespace for custom thymeleaf tags

  29. 29

    Composer: Require a package with custom namespace

HotTag

Archive