Skip to content

RBTN001: Using IPTC Tags With the Watermark Node (And Other Token Fields)

Retrobatch's Text Watermark node is a wonderful way to add custom text to your images.

In the node properties, you are presented with a field which can be used to type in your own text, or using some of the built in tokens (as seen in the blue "Author" token below).

The built in tokens are flexible in that it will search through multiple metadata dictionaries in the image. For example, when looking up the Author tag, Retrobatch will first search the TIFF metadata for the "Artist", then the PNG metadata for "Author", then IPTC "Byline", and finally EXIF "OwnerName".

However if you want a very specific IPTC tag, and one that isn't offered, you'll need to type in some a little bit more complicated text. For instance, if we want to access the "Credit" field of the IPTC dictionary, we would enter the following text: $assetMeta.{IPTC}.Credit$

Let's break that apart a little.

The beginning $ lets Retrobatch know that we've got a special tag coming. The assetMeta text lets Retrobatch know where it's going to look up the data in (another value could be $userValue, but that's something for custom JavaScript plugins). The next part, {IPTC} tells Retrobatch that we're going to be looking up a value in the IPTC dictionary ({EXIF}, {PNG}, and {TIFF} are also valid values). And finally the Credit text lets Retrobatch know which field to grab (if the field is missing, then an empty value is returned). And then finally an ending $ is used to let Retrobatch know the token is finished. And we bring each field together using periods: ..

Other examples include:

$assetMeta.{IPTC}.City$ For looking up an IPTC "City" field.
$assetMeta.{EXIF}.CameraOwnerName$ for the EXIF "Camera Owner Name" field
$assetMeta.{IPTC}.Country/PrimaryLocationName$ For looking up an IPTC "Primary Location Name" field.
$assetMeta.{PNG}.Copyright$ For looking up an PNG Copyright field.
$assetMeta.{PNG}.Comment$ For looking up an PNG Comment field.
$assetMeta.ColorModel$ For the color model.
$assetMeta.Depth$ For the color component depth.

All fields are case sensitive.

A list of IPTC property names can be found here: IPTC Photo Metadata Standard 2023.1

An incomplete list of tags you can use follows:

$assetMeta.Depth$
$assetMeta.Orientation$
$assetMeta.IsFloat$
$assetMeta.IsIndexed$
$assetMeta.HasAlpha$
$assetMeta.ColorModel$
$assetMeta.ProfileName$
$assetMeta.PrimaryImage$

$assetMeta.{TIFF}.Compression$
$assetMeta.{TIFF}.PhotometricInterpretation$
$assetMeta.{TIFF}.DocumentName$
$assetMeta.{TIFF}.ImageDescription$
$assetMeta.{TIFF}.Make$
$assetMeta.{TIFF}.Model$
$assetMeta.{TIFF}.Orientation$
$assetMeta.{TIFF}.XResolution$
$assetMeta.{TIFF}.YResolution$
$assetMeta.{TIFF}.ResolutionUnit$
$assetMeta.{TIFF}.Software$
$assetMeta.{TIFF}.TransferFunction$
$assetMeta.{TIFF}.DateTime$
$assetMeta.{TIFF}.Artist$
$assetMeta.{TIFF}.HostComputer$
$assetMeta.{TIFF}.Copyright$
$assetMeta.{TIFF}.WhitePoint$
$assetMeta.{TIFF}.PrimaryChromaticities$
$assetMeta.{TIFF}.TileWidth$
$assetMeta.{TIFF}.TileLength$

$assetMeta.{JFIF}.JFIFVersion$
$assetMeta.{JFIF}.XDensity$
$assetMeta.{JFIF}.YDensity$
$assetMeta.{JFIF}.DensityUnit$
$assetMeta.{JFIF}.IsProgressive$

$assetMeta.{HEICS}.LoopCount$
$assetMeta.{HEICS}.DelayTime$
$assetMeta.{HEICS}.UnclampedDelayTime$
$assetMeta.{HEICS}.CanvasPixelWidth$
$assetMeta.{HEICS}.CanvasPixelHeight$
$assetMeta.{HEICS}.FrameInfo$

$assetMeta.{Exif}.ExposureTime$
$assetMeta.{Exif}.FNumber$
$assetMeta.{Exif}.ExposureProgram$
$assetMeta.{Exif}.SpectralSensitivity$
$assetMeta.{Exif}.ISOSpeedRatings$
$assetMeta.{Exif}.OECF$
$assetMeta.{Exif}.SensitivityType$
$assetMeta.{Exif}.StandardOutputSensitivity$
$assetMeta.{Exif}.RecommendedExposureIndex$
$assetMeta.{Exif}.ISOSpeed$
$assetMeta.{Exif}.ISOSpeedLatitudeyyy$
$assetMeta.{Exif}.ISOSpeedLatitudezzz$
$assetMeta.{Exif}.ExifVersion$
$assetMeta.{Exif}.DateTimeOriginal$
$assetMeta.{Exif}.DateTimeDigitized$
$assetMeta.{Exif}.OffsetTime$
$assetMeta.{Exif}.OffsetTimeOriginal$
$assetMeta.{Exif}.OffsetTimeDigitized$
$assetMeta.{Exif}.ComponentsConfiguration$
$assetMeta.{Exif}.CompressedBitsPerPixel$
$assetMeta.{Exif}.ShutterSpeedValue$
$assetMeta.{Exif}.ApertureValue$
$assetMeta.{Exif}.BrightnessValue$
$assetMeta.{Exif}.ExposureBiasValue$
$assetMeta.{Exif}.MaxApertureValue$
$assetMeta.{Exif}.SubjectDistance$
$assetMeta.{Exif}.MeteringMode$
$assetMeta.{Exif}.LightSource$
$assetMeta.{Exif}.Flash$
$assetMeta.{Exif}.FocalLength$
$assetMeta.{Exif}.SubjectArea$
$assetMeta.{Exif}.MakerNote$
$assetMeta.{Exif}.UserComment$
$assetMeta.{Exif}.SubsecTime$
$assetMeta.{Exif}.SubsecTimeOriginal$
$assetMeta.{Exif}.SubsecTimeDigitized$
$assetMeta.{Exif}.FlashPixVersion$
$assetMeta.{Exif}.ColorSpace$
$assetMeta.{Exif}.PixelXDimension$
$assetMeta.{Exif}.PixelYDimension$
$assetMeta.{Exif}.RelatedSoundFile$
$assetMeta.{Exif}.FlashEnergy$
$assetMeta.{Exif}.SpatialFrequencyResponse$
$assetMeta.{Exif}.FocalPlaneXResolution$
$assetMeta.{Exif}.FocalPlaneYResolution$
$assetMeta.{Exif}.FocalPlaneResolutionUnit$
$assetMeta.{Exif}.SubjectLocation$
$assetMeta.{Exif}.ExposureIndex$
$assetMeta.{Exif}.SensingMethod$
$assetMeta.{Exif}.FileSource$
$assetMeta.{Exif}.SceneType$
$assetMeta.{Exif}.CFAPattern$
$assetMeta.{Exif}.CustomRendered$
$assetMeta.{Exif}.ExposureMode$
$assetMeta.{Exif}.WhiteBalance$
$assetMeta.{Exif}.DigitalZoomRatio$
$assetMeta.{Exif}.FocalLenIn35mmFilm$
$assetMeta.{Exif}.SceneCaptureType$
$assetMeta.{Exif}.GainControl$
$assetMeta.{Exif}.Contrast$
$assetMeta.{Exif}.Saturation$
$assetMeta.{Exif}.Sharpness$
$assetMeta.{Exif}.DeviceSettingDescription$
$assetMeta.{Exif}.SubjectDistRange$
$assetMeta.{Exif}.ImageUniqueID$
$assetMeta.{Exif}.CameraOwnerName$
$assetMeta.{Exif}.BodySerialNumber$
$assetMeta.{Exif}.LensSpecification$
$assetMeta.{Exif}.LensMake$
$assetMeta.{Exif}.LensModel$
$assetMeta.{Exif}.LensSerialNumber$
$assetMeta.{Exif}.Gamma$
$assetMeta.{Exif}.CompositeImage$
$assetMeta.{Exif}.SourceImageNumberOfCompositeImage$
$assetMeta.{Exif}.SourceExposureTimesOfCompositeImage$

$assetMeta.{ExifAux}.LensInfo$
$assetMeta.{ExifAux}.LensModel$
$assetMeta.{ExifAux}.SerialNumber$
$assetMeta.{ExifAux}.LensID$
$assetMeta.{ExifAux}.LensSerialNumber$
$assetMeta.{ExifAux}.ImageNumber$
$assetMeta.{ExifAux}.FlashCompensation$
$assetMeta.{ExifAux}.OwnerName$
$assetMeta.{ExifAux}.Firmware$

$assetMeta.{GIF}.LoopCount$
$assetMeta.{GIF}.DelayTime$
$assetMeta.{GIF}.ImageColorMap$
$assetMeta.{GIF}.HasGlobalColorMap$
$assetMeta.{GIF}.UnclampedDelayTime$
$assetMeta.{GIF}.CanvasPixelWidth$
$assetMeta.{GIF}.CanvasPixelHeight$
$assetMeta.{GIF}.FrameInfo$

$assetMeta.{PNG}.Author$
$assetMeta.{PNG}.Chromaticities$
$assetMeta.{PNG}.Comment$
$assetMeta.{PNG}.Copyright$
$assetMeta.{PNG}.Creation Time$
$assetMeta.{PNG}.Description$
$assetMeta.{PNG}.Disclaimer$
$assetMeta.{PNG}.Gamma$
$assetMeta.{PNG}.InterlaceType$
$assetMeta.{PNG}.ModificationTime$
$assetMeta.{PNG}.Software$
$assetMeta.{PNG}.Source$
$assetMeta.{PNG}.sRGBIntent$
$assetMeta.{PNG}.Title$
$assetMeta.{PNG}.Warning$
$assetMeta.{PNG}.XPixelsPerMeter$
$assetMeta.{PNG}.YPixelsPerMeter$
$assetMeta.{PNG}.PixelAspectRatio$
$assetMeta.{PNG}.LoopCount$
$assetMeta.{PNG}.DelayTime$
$assetMeta.{PNG}.UnclampedDelayTime$
$assetMeta.{PNG}.FrameInfo$
$assetMeta.{PNG}.CanvasPixelWidth$
$assetMeta.{PNG}.CanvasPixelHeight$

$assetMeta.{WebP}.LoopCount$
$assetMeta.{WebP}.DelayTime$
$assetMeta.{WebP}.UnclampedDelayTime$
$assetMeta.{WebP}.FrameInfo$
$assetMeta.{WebP}.CanvasPixelWidth$
$assetMeta.{WebP}.CanvasPixelHeight$

$assetMeta.{GPS}.GPSVersion$
$assetMeta.{GPS}.LatitudeRef$
$assetMeta.{GPS}.Latitude$
$assetMeta.{GPS}.LongitudeRef$
$assetMeta.{GPS}.Longitude$
$assetMeta.{GPS}.AltitudeRef$
$assetMeta.{GPS}.Altitude$
$assetMeta.{GPS}.TimeStamp$
$assetMeta.{GPS}.Satellites$
$assetMeta.{GPS}.Status$
$assetMeta.{GPS}.MeasureMode$
$assetMeta.{GPS}.DOP$
$assetMeta.{GPS}.SpeedRef$
$assetMeta.{GPS}.Speed$
$assetMeta.{GPS}.TrackRef$
$assetMeta.{GPS}.Track$
$assetMeta.{GPS}.ImgDirectionRef$
$assetMeta.{GPS}.ImgDirection$
$assetMeta.{GPS}.MapDatum$
$assetMeta.{GPS}.DestLatitudeRef$
$assetMeta.{GPS}.DestLatitude$
$assetMeta.{GPS}.DestLongitudeRef$
$assetMeta.{GPS}.DestLongitude$
$assetMeta.{GPS}.DestBearingRef$
$assetMeta.{GPS}.DestBearing$
$assetMeta.{GPS}.DestDistanceRef$
$assetMeta.{GPS}.DestDistance$
$assetMeta.{GPS}.ProcessingMethod$
$assetMeta.{GPS}.AreaInformation$
$assetMeta.{GPS}.DateStamp$
$assetMeta.{GPS}.Differential$
$assetMeta.{GPS}.HPositioningError$

$assetMeta.{IPTC}.ObjectTypeReference$
$assetMeta.{IPTC}.ObjectAttributeReference$
$assetMeta.{IPTC}.ObjectName$
$assetMeta.{IPTC}.EditStatus$
$assetMeta.{IPTC}.EditorialUpdate$
$assetMeta.{IPTC}.Urgency$
$assetMeta.{IPTC}.SubjectReference$
$assetMeta.{IPTC}.Category$
$assetMeta.{IPTC}.SupplementalCategory$
$assetMeta.{IPTC}.FixtureIdentifier$
$assetMeta.{IPTC}.Keywords$
$assetMeta.{IPTC}.ContentLocationCode$
$assetMeta.{IPTC}.ContentLocationName$
$assetMeta.{IPTC}.ReleaseDate$
$assetMeta.{IPTC}.ReleaseTime$
$assetMeta.{IPTC}.ExpirationDate$
$assetMeta.{IPTC}.ExpirationTime$
$assetMeta.{IPTC}.SpecialInstructions$
$assetMeta.{IPTC}.ActionAdvised$
$assetMeta.{IPTC}.ReferenceService$
$assetMeta.{IPTC}.ReferenceDate$
$assetMeta.{IPTC}.ReferenceNumber$
$assetMeta.{IPTC}.DateCreated$
$assetMeta.{IPTC}.TimeCreated$
$assetMeta.{IPTC}.DigitalCreationDate$
$assetMeta.{IPTC}.DigitalCreationTime$
$assetMeta.{IPTC}.OriginatingProgram$
$assetMeta.{IPTC}.ProgramVersion$
$assetMeta.{IPTC}.ObjectCycle$
$assetMeta.{IPTC}.Byline$
$assetMeta.{IPTC}.BylineTitle$
$assetMeta.{IPTC}.City$
$assetMeta.{IPTC}.SubLocation$
$assetMeta.{IPTC}.Province/State$
$assetMeta.{IPTC}.Country/PrimaryLocationCode$
$assetMeta.{IPTC}.Country/PrimaryLocationName$
$assetMeta.{IPTC}.OriginalTransmissionReference$
$assetMeta.{IPTC}.Headline$
$assetMeta.{IPTC}.Credit$
$assetMeta.{IPTC}.Source$
$assetMeta.{IPTC}.CopyrightNotice$
$assetMeta.{IPTC}.Contact$
$assetMeta.{IPTC}.Caption/Abstract$
$assetMeta.{IPTC}.Writer/Editor$
$assetMeta.{IPTC}.ImageType$
$assetMeta.{IPTC}.ImageOrientation$
$assetMeta.{IPTC}.LanguageIdentifier$
$assetMeta.{IPTC}.StarRating$
$assetMeta.{IPTC}.CreatorContactInfo$
$assetMeta.{IPTC}.UsageTerms$
$assetMeta.{IPTC}.Scene$
$assetMeta.{IPTC}.AboutCvTerm$
$assetMeta.{IPTC}.AboutCvTermCvId$
$assetMeta.{IPTC}.AboutCvTermId$
$assetMeta.{IPTC}.AboutCvTermName$
$assetMeta.{IPTC}.AboutCvTermRefinedAbout$
$assetMeta.{IPTC}.AddlModelInfo$
$assetMeta.{IPTC}.ArtworkOrObject$
$assetMeta.{IPTC}.ArtworkCircaDateCreated$
$assetMeta.{IPTC}.ArtworkContentDescription$
$assetMeta.{IPTC}.ArtworkContributionDescription$
$assetMeta.{IPTC}.ArtworkCopyrightNotice$
$assetMeta.{IPTC}.ArtworkCreator$
$assetMeta.{IPTC}.ArtworkCreatorID$
$assetMeta.{IPTC}.ArtworkCopyrightOwnerID$
$assetMeta.{IPTC}.ArtworkCopyrightOwnerName$
$assetMeta.{IPTC}.ArtworkLicensorID$
$assetMeta.{IPTC}.ArtworkLicensorName$
$assetMeta.{IPTC}.ArtworkDateCreated$
$assetMeta.{IPTC}.ArtworkPhysicalDescription$
$assetMeta.{IPTC}.ArtworkSource$
$assetMeta.{IPTC}.ArtworkSourceInventoryNo$
$assetMeta.{IPTC}.ArtworkSourceInvURL$
$assetMeta.{IPTC}.ArtworkStylePeriod$
$assetMeta.{IPTC}.ArtworkTitle$
$assetMeta.{IPTC}.AudioBitrate$
$assetMeta.{IPTC}.AudioBitrateMode$
$assetMeta.{IPTC}.AudioChannelCount$
$assetMeta.{IPTC}.CircaDateCreated$
$assetMeta.{IPTC}.ContainerFormat$
$assetMeta.{IPTC}.ContainerFormatIdentifier$
$assetMeta.{IPTC}.ContainerFormatName$
$assetMeta.{IPTC}.Contributor$
$assetMeta.{IPTC}.ContributorIdentifier$
$assetMeta.{IPTC}.ContributorName$
$assetMeta.{IPTC}.ContributorRole$
$assetMeta.{IPTC}.CopyrightYear$
$assetMeta.{IPTC}.Creator$
$assetMeta.{IPTC}.CreatorIdentifier$
$assetMeta.{IPTC}.CreatorName$
$assetMeta.{IPTC}.CreatorRole$
$assetMeta.{IPTC}.ControlledVocabularyTerm$
$assetMeta.{IPTC}.DataOnScreen$
$assetMeta.{IPTC}.DataOnScreenRegion$
$assetMeta.{IPTC}.DataOnScreenRegionD$
$assetMeta.{IPTC}.DataOnScreenRegionH$
$assetMeta.{IPTC}.DataOnScreenRegionText$
$assetMeta.{IPTC}.DataOnScreenRegionUnit$
$assetMeta.{IPTC}.DataOnScreenRegionW$
$assetMeta.{IPTC}.DataOnScreenRegionX$
$assetMeta.{IPTC}.DataOnScreenRegionY$
$assetMeta.{IPTC}.DigitalImageGUID$
$assetMeta.{IPTC}.DigitalSourceFileType$
$assetMeta.{IPTC}.DigitalSourceType$
$assetMeta.{IPTC}.Dopesheet$
$assetMeta.{IPTC}.DopesheetLink$
$assetMeta.{IPTC}.DopesheetLinkLink$
$assetMeta.{IPTC}.DopesheetLinkLinkQualifier$
$assetMeta.{IPTC}.EmbdEncRightsExpr$
$assetMeta.{IPTC}.EmbeddedEncodedRightsExpr$
$assetMeta.{IPTC}.EmbeddedEncodedRightsExprType$
$assetMeta.{IPTC}.EmbeddedEncodedRightsExprLangID$
$assetMeta.{IPTC}.Episode$
$assetMeta.{IPTC}.EpisodeIdentifier$
$assetMeta.{IPTC}.EpisodeName$
$assetMeta.{IPTC}.EpisodeNumber$
$assetMeta.{IPTC}.Event$
$assetMeta.{IPTC}.ShownEvent$
$assetMeta.{IPTC}.ShownEventIdentifier$
$assetMeta.{IPTC}.ShownEventName$
$assetMeta.{IPTC}.ExternalMetadataLink$
$assetMeta.{IPTC}.FeedIdentifier$
$assetMeta.{IPTC}.Genre$
$assetMeta.{IPTC}.GenreCvId$
$assetMeta.{IPTC}.GenreCvTermId$
$assetMeta.{IPTC}.GenreCvTermName$
$assetMeta.{IPTC}.GenreCvTermRefinedAbout$
$assetMeta.{IPTC}.Headline$
$assetMeta.{IPTC}.IPTCLastEdited$
$assetMeta.{IPTC}.LinkedEncRightsExpr$
$assetMeta.{IPTC}.LinkedEncodedRightsExpr$
$assetMeta.{IPTC}.LinkedEncodedRightsExprType$
$assetMeta.{IPTC}.LinkedEncodedRightsExprLangID$
$assetMeta.{IPTC}.LocationCreated$
$assetMeta.{IPTC}.City$
$assetMeta.{IPTC}.CountryCode$
$assetMeta.{IPTC}.CountryName$
$assetMeta.{IPTC}.GPSAltitude$
$assetMeta.{IPTC}.GPSLatitude$
$assetMeta.{IPTC}.GPSLongitude$
$assetMeta.{IPTC}.Identifier$
$assetMeta.{IPTC}.LocationId$
$assetMeta.{IPTC}.LocationName$
$assetMeta.{IPTC}.ProvinceState$
$assetMeta.{IPTC}.Sublocation$
$assetMeta.{IPTC}.WorldRegion$
$assetMeta.{IPTC}.LocationShown$
$assetMeta.{IPTC}.MaxAvailHeight$
$assetMeta.{IPTC}.MaxAvailWidth$
$assetMeta.{IPTC}.ModelAge$
$assetMeta.{IPTC}.OrganisationInImageCode$
$assetMeta.{IPTC}.OrganisationInImageName$
$assetMeta.{IPTC}.PersonHeard$
$assetMeta.{IPTC}.PersonHeardIdentifier$
$assetMeta.{IPTC}.PersonHeardName$
$assetMeta.{IPTC}.PersonInImage$
$assetMeta.{IPTC}.PersonInImageWDetails$
$assetMeta.{IPTC}.PersonInImageCharacteristic$
$assetMeta.{IPTC}.PersonInImageCvTermCvId$
$assetMeta.{IPTC}.PersonInImageCvTermId$
$assetMeta.{IPTC}.PersonInImageCvTermName$
$assetMeta.{IPTC}.PersonInImageCvTermRefinedAbout$
$assetMeta.{IPTC}.PersonInImageDescription$
$assetMeta.{IPTC}.PersonInImageId$
$assetMeta.{IPTC}.PersonInImageName$
$assetMeta.{IPTC}.ProductInImage$
$assetMeta.{IPTC}.ProductInImageDescription$
$assetMeta.{IPTC}.ProductInImageGTIN$
$assetMeta.{IPTC}.ProductInImageName$
$assetMeta.{IPTC}.PublicationEvent$
$assetMeta.{IPTC}.PublicationEventDate$
$assetMeta.{IPTC}.PublicationEventIdentifier$
$assetMeta.{IPTC}.PublicationEventName$
$assetMeta.{IPTC}.Rating$
$assetMeta.{IPTC}.RatingRatingRegion$
$assetMeta.{IPTC}.RatingRegionCity$
$assetMeta.{IPTC}.RatingRegionCountryCode$
$assetMeta.{IPTC}.RatingRegionCountryName$
$assetMeta.{IPTC}.RatingRegionGPSAltitude$
$assetMeta.{IPTC}.RatingRegionGPSLatitude$
$assetMeta.{IPTC}.RatingRegionGPSLongitude$
$assetMeta.{IPTC}.RatingRegionIdentifier$
$assetMeta.{IPTC}.RatingRegionLocationId$
$assetMeta.{IPTC}.RatingRegionLocationName$
$assetMeta.{IPTC}.RatingRegionProvinceState$
$assetMeta.{IPTC}.RatingRegionSublocation$
$assetMeta.{IPTC}.RatingRegionWorldRegion$
$assetMeta.{IPTC}.RatingScaleMaxValue$
$assetMeta.{IPTC}.RatingScaleMinValue$
$assetMeta.{IPTC}.RatingSourceLink$
$assetMeta.{IPTC}.RatingValue$
$assetMeta.{IPTC}.RatingValueLogoLink$
$assetMeta.{IPTC}.RegistryID$
$assetMeta.{IPTC}.RegistryEntryRole$
$assetMeta.{IPTC}.RegistryItemID$
$assetMeta.{IPTC}.RegistryOrganisationID$
$assetMeta.{IPTC}.ReleaseReady$
$assetMeta.{IPTC}.Season$
$assetMeta.{IPTC}.SeasonIdentifier$
$assetMeta.{IPTC}.SeasonName$
$assetMeta.{IPTC}.SeasonNumber$
$assetMeta.{IPTC}.Series$
$assetMeta.{IPTC}.SeriesIdentifier$
$assetMeta.{IPTC}.SeriesName$
$assetMeta.{IPTC}.StorylineIdentifier$
$assetMeta.{IPTC}.StreamReady$
$assetMeta.{IPTC}.StylePeriod$
$assetMeta.{IPTC}.SupplyChainSource$
$assetMeta.{IPTC}.SupplyChainSourceIdentifier$
$assetMeta.{IPTC}.SupplyChainSourceName$
$assetMeta.{IPTC}.TemporalCoverage$
$assetMeta.{IPTC}.TemporalCoverageFrom$
$assetMeta.{IPTC}.TemporalCoverageTo$
$assetMeta.{IPTC}.Transcript$
$assetMeta.{IPTC}.TranscriptLink$
$assetMeta.{IPTC}.TranscriptLinkLink$
$assetMeta.{IPTC}.TranscriptLinkLinkQualifier$
$assetMeta.{IPTC}.VideoBitrate$
$assetMeta.{IPTC}.VideoBitrateMode$
$assetMeta.{IPTC}.VideoDisplayAspectRatio$
$assetMeta.{IPTC}.VideoEncodingProfile$
$assetMeta.{IPTC}.VideoShotType$
$assetMeta.{IPTC}.VideoShotTypeIdentifier$
$assetMeta.{IPTC}.VideoShotTypeName$
$assetMeta.{IPTC}.VideoStreamsCount$
$assetMeta.{IPTC}.VisualColor$
$assetMeta.{IPTC}.WorkflowTag$
$assetMeta.{IPTC}.WorkflowTagCvId$
$assetMeta.{IPTC}.WorkflowTagCvTermId$
$assetMeta.{IPTC}.WorkflowTagCvTermName$
$assetMeta.{IPTC}.WorkflowTagCvTermRefinedAbout$

$assetMeta.CreatorContactInfo.CiAdrCity$
$assetMeta.CreatorContactInfo.CiAdrCtry$
$assetMeta.CreatorContactInfo.CiAdrExtadr$
$assetMeta.CreatorContactInfo.CiAdrPcode$
$assetMeta.CreatorContactInfo.CiAdrRegion$
$assetMeta.CreatorContactInfo.CiEmailWork$
$assetMeta.CreatorContactInfo.CiTelWork$
$assetMeta.CreatorContactInfo.CiUrlWork$

$assetMeta.{8BIM}.LayerNames$
$assetMeta.{8BIM}.Version$

$assetMeta.{DNG}.DNGVersion$
$assetMeta.{DNG}.DNGBackwardVersion$
$assetMeta.{DNG}.UniqueCameraModel$
$assetMeta.{DNG}.LocalizedCameraModel$
$assetMeta.{DNG}.CameraSerialNumber$
$assetMeta.{DNG}.LensInfo$
$assetMeta.{DNG}.BlackLevel$
$assetMeta.{DNG}.WhiteLevel$
$assetMeta.{DNG}.CalibrationIlluminant1$
$assetMeta.{DNG}.CalibrationIlluminant2$
$assetMeta.{DNG}.ColorMatrix1$
$assetMeta.{DNG}.ColorMatrix2$
$assetMeta.{DNG}.CameraCalibration1$
$assetMeta.{DNG}.CameraCalibration2$
$assetMeta.{DNG}.AsShotNeutral$
$assetMeta.{DNG}.AsShotWhiteXY$
$assetMeta.{DNG}.BaselineExposure$
$assetMeta.{DNG}.BaselineNoise$
$assetMeta.{DNG}.BaselineSharpness$
$assetMeta.{DNG}.DNGPrivateData$
$assetMeta.{DNG}.CameraCalibrationSignature$
$assetMeta.{DNG}.ProfileCalibrationSignature$
$assetMeta.{DNG}.NoiseProfile$
$assetMeta.{DNG}.WarpRectilinear$
$assetMeta.{DNG}.WarpFisheye$
$assetMeta.{DNG}.FixVignetteRadial$
$assetMeta.{DNG}.ActiveArea$
$assetMeta.{DNG}.AnalogBalance$
$assetMeta.{DNG}.AntiAliasStrength$
$assetMeta.{DNG}.AsShotICCProfile$
$assetMeta.{DNG}.AsShotPreProfileMatrix$
$assetMeta.{DNG}.AsShotProfileName$
$assetMeta.{DNG}.BaselineExposureOffset$
$assetMeta.{DNG}.BayerGreenSplit$
$assetMeta.{DNG}.BestQualityScale$
$assetMeta.{DNG}.BlackLevelDeltaH$
$assetMeta.{DNG}.BlackLevelDeltaV$
$assetMeta.{DNG}.BlackLevelRepeatDim$
$assetMeta.{DNG}.CFALayout$
$assetMeta.{DNG}.CFAPlaneColor$
$assetMeta.{DNG}.ChromaBlurRadius$
$assetMeta.{DNG}.ColorimetricReference$
$assetMeta.{DNG}.CurrentICCProfile$
$assetMeta.{DNG}.CurrentPreProfileMatrix$
$assetMeta.{DNG}.DefaultBlackRender$
$assetMeta.{DNG}.DefaultCropOrigin$
$assetMeta.{DNG}.DefaultCropSize$
$assetMeta.{DNG}.DefaultScale$
$assetMeta.{DNG}.DefaultUserCrop$
$assetMeta.{DNG}.ExtraCameraProfiles$
$assetMeta.{DNG}.ForwardMatrix1$
$assetMeta.{DNG}.ForwardMatrix2$
$assetMeta.{DNG}.LinearizationTable$
$assetMeta.{DNG}.LinearResponseLimit$
$assetMeta.{DNG}.MakerNoteSafety$
$assetMeta.{DNG}.MaskedAreas$
$assetMeta.{DNG}.NewRawImageDigest$
$assetMeta.{DNG}.NoiseReductionApplied$
$assetMeta.{DNG}.OpcodeList1$
$assetMeta.{DNG}.DNGOpcodeList2$
$assetMeta.{DNG}.DNGOpcodeList3$
$assetMeta.{DNG}.OriginalBestQualityFinalSize$
$assetMeta.{DNG}.OriginalDefaultCropSize$
$assetMeta.{DNG}.OriginalDefaultFinalSize$
$assetMeta.{DNG}.OriginalRawFileData$
$assetMeta.{DNG}.OriginalRawFileDigest$
$assetMeta.{DNG}.OriginalRawFileName$
$assetMeta.{DNG}.PreviewApplicationName$
$assetMeta.{DNG}.PreviewApplicationVersion$
$assetMeta.{DNG}.PreviewColorSpace$
$assetMeta.{DNG}.PreviewDateTime$
$assetMeta.{DNG}.PreviewSettingsDigest$
$assetMeta.{DNG}.PreviewSettingsName$
$assetMeta.{DNG}.ProfileCopyright$
$assetMeta.{DNG}.ProfileEmbedPolicy$
$assetMeta.{DNG}.ProfileHueSatMapData1$
$assetMeta.{DNG}.ProfileHueSatMapData2$
$assetMeta.{DNG}.ProfileHueSatMapDims$
$assetMeta.{DNG}.ProfileHueSatMapEncoding$
$assetMeta.{DNG}.ProfileLookTableData$
$assetMeta.{DNG}.ProfileLookTableDims$
$assetMeta.{DNG}.ProfileLookTableEncoding$
$assetMeta.{DNG}.DNGProfileName$
$assetMeta.{DNG}.ProfileToneCurve$
$assetMeta.{DNG}.DNGRawDataUniqueID$
$assetMeta.{DNG}.RawImageDigest$
$assetMeta.{DNG}.RawToPreviewGain$
$assetMeta.{DNG}.ReductionMatrix1$
$assetMeta.{DNG}.ReductionMatrix2$
$assetMeta.{DNG}.RowInterleaveFactor$
$assetMeta.{DNG}.ShadowScale$
$assetMeta.{DNG}.SubTileBlockSize$

$assetMeta.{CIFF}.Description$
$assetMeta.{CIFF}.Firmware$
$assetMeta.{CIFF}.OwnerName$
$assetMeta.{CIFF}.ImageName$
$assetMeta.{CIFF}.ImageFileName$
$assetMeta.{CIFF}.ReleaseMethod$
$assetMeta.{CIFF}.ReleaseTiming$
$assetMeta.{CIFF}.RecordID$
$assetMeta.{CIFF}.SelfTimingTime$
$assetMeta.{CIFF}.CameraSerialNumber$
$assetMeta.{CIFF}.ImageSerialNumber$
$assetMeta.{CIFF}.ContinuousDrive$
$assetMeta.{CIFF}.FocusMode$
$assetMeta.{CIFF}.MeteringMode$
$assetMeta.{CIFF}.ShootingMode$
$assetMeta.{CIFF}.LensModel$
$assetMeta.{CIFF}.LensMaxMM$
$assetMeta.{CIFF}.LensMinMM$
$assetMeta.{CIFF}.WhiteBalanceIndex$
$assetMeta.{CIFF}.FlashExposureComp$
$assetMeta.{CIFF}.MeasuredEV$

$assetMeta.{MakerNikon}.ISOSetting$
$assetMeta.{MakerNikon}.ColorMode$
$assetMeta.{MakerNikon}.Quality$
$assetMeta.{MakerNikon}.WhiteBalanceMode$
$assetMeta.{MakerNikon}.SharpenMode$
$assetMeta.{MakerNikon}.FocusMode$
$assetMeta.{MakerNikon}.FlashSetting$
$assetMeta.{MakerNikon}.ISOSelection$
$assetMeta.{MakerNikon}.FlashExposureComp$
$assetMeta.{MakerNikon}.ImageAdjustment$
$assetMeta.{MakerNikon}.LensAdapter$
$assetMeta.{MakerNikon}.LensType$
$assetMeta.{MakerNikon}.LensInfo$
$assetMeta.{MakerNikon}.FocusDistance$
$assetMeta.{MakerNikon}.DigitalZoom$
$assetMeta.{MakerNikon}.ShootingMode$
$assetMeta.{MakerNikon}.CameraSerialNumber$
$assetMeta.{MakerNikon}.ShutterCount$

$assetMeta.{MakerCanon}.OwnerName$
$assetMeta.{MakerCanon}.CameraSerialNumber$
$assetMeta.{MakerCanon}.ImageSerialNumber$
$assetMeta.{MakerCanon}.FlashExposureComp$
$assetMeta.{MakerCanon}.ContinuousDrive$
$assetMeta.{MakerCanon}.LensModel$
$assetMeta.{MakerCanon}.Firmware$
$assetMeta.{MakerCanon}.AspectRatioInfo$