Skip to content

Instantly share code, notes, and snippets.

@solarsailer
Created July 2, 2018 22:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save solarsailer/8c010ac4b322dc7e08eac4d58bf2f08a to your computer and use it in GitHub Desktop.
Save solarsailer/8c010ac4b322dc7e08eac4d58bf2f08a to your computer and use it in GitHub Desktop.
Lightroom custom metadata panel
-- Copy in "~/Library/Application Support/Adobe/Lightroom/Metadata Field Lists/Matthieu Oger.lrtemplate"
return {
version = 1,
title = "Matthieu Oger",
id = "info.regex.lrmeta.v1.mo",
type = "MetadataFieldList",
items = {
{ formatter = 'com.adobe.captureDate', label="Date" },
{ formatter = 'com.adobe.captureTime', label="Time" },
"com.adobe.separator",
-- Camera.
{ formatter = 'com.adobe.model', label="Camera" },
"com.adobe.lens",
"com.adobe.separator",
-- Focal Length.
{ formatter = "com.adobe.focalLength", label="Focal / Native" },
{ formatter = "com.adobe.focalLength35mm", label="Focal / 35mm" },
"com.adobe.separator",
-- Settings.
{ formatter = "com.adobe.apertureValue", label="Aperture" },
{ formatter = "com.adobe.ISOSpeedRating", label="ISO" },
{ formatter = "com.adobe.exposureTime", label="Shutter Speed" },
"com.adobe.separator",
-- Position.
{ formatter = "com.adobe.location", label="Location" },
"com.adobe.city",
"com.adobe.state",
"com.adobe.country",
"com.adobe.separator",
-- Comments.
"com.adobe.title",
{ formatter = "com.adobe.caption", allow_newlines=true, height_in_lines=3 },
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment