Annonce

  •  » Plugins
  •  » [Résolu] [AMetadata] Permettre de synchroniser uniquement les données GPS ?

#1 2011-03-10 17:05:00

Zaphod
Former Piwigo Team
Toulouse
2006-11-13
2422

[Résolu] [AMetadata] Permettre de synchroniser uniquement les données GPS ?

A priori, GMaps utilise les données Magic de AMD pour la localisation GPS.
Le souci, c'est que quand on veut utiliser AMD principalement pour GPS, cela oblige à synchroniser toutes les données Magic, qui prennent énormement de place dans la BDD, alors qu'on n'en n'a pas forcément besoin.

J'avais déja proposé de permettre un choix plus étendu pour chaque métadonnée, mais ça me semble très lourd à gérer (je suppose qu'à faire ça doit être lourd aussi).

Est-il possible d'imaginer de faire juste dans la liste à cocher (Magic, XMP, IPTC, etc..) un autre choix (GPS data) qui permettrait de faire fonctionner GMaps en utilisant un minimum de place dans la BDD ?

Si c'est imaginable, je ferai la demande d'évolution dans le bugtracker.

Hors ligne

#2 2011-03-10 19:23:21

grum
Former Piwigo Team
50% Nantes - 50% Paris
2007-09-10
2502

Re: [Résolu] [AMetadata] Permettre de synchroniser uniquement les données GPS ?

Alala c'est pas simple tout çà....

Entre ceux qui considèrent que l'interface de ce plugin est déjà trop complexe et ceux qui veulent que j'en rajoute une couche d'options, vé pas m'en sortir..... ^^;

Ce genre d'option n'étant pas à mon sens indispensable (les métadonnées magic sont relativement peu gourmandes en comparaison aux métadonnées exif par exemple), je n'implémenterais pas d'option via l'interface de configuration.

Néanmoins, il existe une solution :
1/ Désinstalle le plugin (tu vas perdre la config, mais pour appliquer ce que tu souhaites t'as pas le choix)
2/ Dans le répertoire du plugin, tu créé un fichier activatePlugin.conf.php et dedans tu mets quelque chose qui ressemble à çà :

Code:

$conf['amd_FillDataBaseExcludeTags']=array(
  'magic.Author.Artist', 
  'magic.Author.Comment', 
  'magic.Author.Copyright', 
  'magic.Author.ImageTitle', 
  'magic.Author.Keywords', 
  'magic.Camera.Make', 
  'magic.Camera.Model', 
/* 
 * keep magic.GPS.* metadata fields
 *
  'magic.GPS.Altitude', 
  'magic.GPS.Latitude', 
  'magic.GPS.LatitudeNum', 
  'magic.GPS.Localization', 
  'magic.GPS.Longitude', 
  'magic.GPS.LongitudeNum',
*/
  'magic.Image.Dimension', 
  'magic.Image.Height', 
  'magic.Image.Width', 
  'magic.Processing.OriginalFileName', 
  'magic.Processing.PostProcessingDateTime', 
  'magic.Processing.PostProcessingSoftware', 
  'magic.Processing.Software', 
  'magic.ShotInfo.Aperture', 
  'magic.ShotInfo.DateTime', 
  'magic.ShotInfo.Exposure', 
  'magic.ShotInfo.Flash.Fired', 
  'magic.ShotInfo.Flash.RedEyeMode', 
  'magic.ShotInfo.FocalLength', 
  'magic.ShotInfo.FocalLengthIn35mm', 
  'magic.ShotInfo.ISO', 
  'magic.ShotInfo.Lens', 

  'com.comment', 
  'exif.Unknown.AFCP_IPTC', 
  'exif.Unknown.ColorResponseUnit', 
  'exif.Unknown.FreeByteCounts', 
  'exif.Unknown.GrayResponseCurve', 
  'exif.Unknown.ICC_Profile', 
  'exif.Unknown.T4Options', 
  'exif.Unknown.T6Options', 
  'exif.Unknown.TIFF-EPStandardID', 
  'exif.exif.ApertureValue', 
  'exif.exif.Balance', 
  'exif.exif.BrightnessValue', 
  'exif.exif.CFAPattern', 
  'exif.exif.ColorSpace', 
  'exif.exif.ComponentsConfiguration', 
  'exif.exif.CompressedBitsPerPixel', 
  'exif.exif.Contrast', 
  'exif.exif.CustomRendered', 
  'exif.exif.DateTimeDigitized', 
  'exif.exif.DateTimeOriginal', 
  'exif.exif.DeviceSettingDescription', 
  'exif.exif.DigitalZoomRatio', 
  'exif.exif.ExifVersion', 
  'exif.exif.ExposureBiasValue', 
  'exif.exif.ExposureIndex', 
  'exif.exif.ExposureMode', 
  'exif.exif.ExposureProgram', 
  'exif.exif.ExposureTime', 
  'exif.exif.FNumber', 
  'exif.exif.FileSource', 
  'exif.exif.Flash', 
  'exif.exif.FlashpixVersion', 
  'exif.exif.FocalLength', 
  'exif.exif.FocalLengthIn35mmFilm', 
  'exif.exif.FocalPlaneResolutionUnit', 
  'exif.exif.FocalPlaneXResolution', 
  'exif.exif.FocalPlaneYResolution', 
  'exif.exif.GainControl', 
  'exif.exif.Gamma', 
  'exif.exif.ISOSpeedRatings', 
  'exif.exif.ImageHistory', 
  'exif.exif.ImageNumber', 
  'exif.exif.ImageUniqueID', 
  'exif.exif.Interoperability IFD Pointer', 
  'exif.exif.LightSource', 
  'exif.exif.MakerNote', 
  'exif.exif.MaxApertureValue', 
  'exif.exif.MeteringMode', 
  'exif.exif.Noise', 
  'exif.exif.OECF', 
  'exif.exif.PixelXDimension', 
  'exif.exif.PixelYDimension', 
  'exif.exif.RelatedSoundFile', 
  'exif.exif.Saturation', 
  'exif.exif.SceneCaptureType', 
  'exif.exif.SceneType', 
  'exif.exif.SecurityClassification', 
  'exif.exif.SelfTimerMode', 
  'exif.exif.SensingMethod', 
  'exif.exif.Sharpness', 
  'exif.exif.ShutterSpeedValue', 
  'exif.exif.SpatialFrequencyResponse', 
  'exif.exif.SpectralSensitivity', 
  'exif.exif.SubjectArea', 
  'exif.exif.SubjectDistance', 
  'exif.exif.SubjectDistanceRange', 
  'exif.exif.SubjectLocation', 
  'exif.exif.SubsecTime', 
  'exif.exif.SubsecTimeDigitized', 
  'exif.exif.SubsecTimeOriginal', 
  'exif.exif.UserComment', 
  'exif.gps.GPSAltitude', 
  'exif.gps.GPSAltitudeRef', 
  'exif.gps.GPSAreaInformation', 
  'exif.gps.GPSDOP', 
  'exif.gps.GPSDateStamp', 
  'exif.gps.GPSDestBearing', 
  'exif.gps.GPSDestBearingRef', 
  'exif.gps.GPSDestDistance', 
  'exif.gps.GPSDestDistanceRef', 
  'exif.gps.GPSDestLatitude', 
  'exif.gps.GPSDestLatitudeRef', 
  'exif.gps.GPSDestLongitude', 
  'exif.gps.GPSDestLongitudeRef', 
  'exif.gps.GPSDifferential', 
  'exif.gps.GPSImgDirection', 
  'exif.gps.GPSImgDirectionRef', 
  'exif.gps.GPSLatitude', 
  'exif.gps.GPSLatitudeRef', 
  'exif.gps.GPSLongitude', 
  'exif.gps.GPSLongitudeRef', 
  'exif.gps.GPSMapDatum', 
  'exif.gps.GPSMeasureMode', 
  'exif.gps.GPSProcessingMethod', 
  'exif.gps.GPSSatellites', 
  'exif.gps.GPSSpeed', 
  'exif.gps.GPSSpeedRef', 
  'exif.gps.GPSStatus', 
  'exif.gps.GPSTimeStamp', 
  'exif.gps.GPSTrack', 
  'exif.gps.GPSTrackRef', 
  'exif.gps.GPSVersionID', 
  'exif.maker.Canon.AFMicroAdj', 
  'exif.maker.Canon.AFPointsInFocus1D', 
  'exif.maker.Canon.CanonAFInfo', 
  'exif.maker.Canon.CanonAFInfo2', 
  'exif.maker.Canon.CanonCameraInfo', 
  'exif.maker.Canon.CanonCameraInfo.CameraOrientation', 
  'exif.maker.Canon.CanonCameraInfo.CameraTemperature', 
  'exif.maker.Canon.CanonCameraInfo.ColorTemperature', 
  'exif.maker.Canon.CanonCameraInfo.DirectoryIndex', 
  'exif.maker.Canon.CanonCameraInfo.ExposureTime', 
  'exif.maker.Canon.CanonCameraInfo.FNumber', 
  'exif.maker.Canon.CanonCameraInfo.FileIndex', 
  'exif.maker.Canon.CanonCameraInfo.FirmwareVersion', 
  'exif.maker.Canon.CanonCameraInfo.FlashMeteringMode', 
  'exif.maker.Canon.CanonCameraInfo.FocalLength', 
  'exif.maker.Canon.CanonCameraInfo.FocusDistanceLower', 
  'exif.maker.Canon.CanonCameraInfo.FocusDistanceUpper', 
  'exif.maker.Canon.CanonCameraInfo.HighlightTonePriority', 
  'exif.maker.Canon.CanonCameraInfo.ISO', 
  'exif.maker.Canon.CanonCameraInfo.LensModel', 
  'exif.maker.Canon.CanonCameraInfo.LensType', 
  'exif.maker.Canon.CanonCameraInfo.LongFocal', 
  'exif.maker.Canon.CanonCameraInfo.MacroMagnification', 
  'exif.maker.Canon.CanonCameraInfo.ShortFocal', 
  'exif.maker.Canon.CanonCameraInfo.WhiteBalance', 
  'exif.maker.Canon.CanonCameraSettings', 
  'exif.maker.Canon.CanonCameraSettings.AESetting', 
  'exif.maker.Canon.CanonCameraSettings.AFPoint', 
  'exif.maker.Canon.CanonCameraSettings.CameraISO', 
  'exif.maker.Canon.CanonCameraSettings.CanonExposureMode', 
  'exif.maker.Canon.CanonCameraSettings.CanonFlashMode', 
  'exif.maker.Canon.CanonCameraSettings.CanonImageSize', 
  'exif.maker.Canon.CanonCameraSettings.ColorTone', 
  'exif.maker.Canon.CanonCameraSettings.ContinuousDrive', 
  'exif.maker.Canon.CanonCameraSettings.Contrast', 
  'exif.maker.Canon.CanonCameraSettings.DigitalZoom', 
  'exif.maker.Canon.CanonCameraSettings.DisplayAperture', 
  'exif.maker.Canon.CanonCameraSettings.EasyMode', 
  'exif.maker.Canon.CanonCameraSettings.FlashActivity', 
  'exif.maker.Canon.CanonCameraSettings.FlashBits', 
  'exif.maker.Canon.CanonCameraSettings.FocalUnits', 
  'exif.maker.Canon.CanonCameraSettings.FocusContinuous', 
  'exif.maker.Canon.CanonCameraSettings.FocusMode', 
  'exif.maker.Canon.CanonCameraSettings.FocusRange', 
  'exif.maker.Canon.CanonCameraSettings.ImageStabilization', 
  'exif.maker.Canon.CanonCameraSettings.LensType', 
  'exif.maker.Canon.CanonCameraSettings.LongFocal', 
  'exif.maker.Canon.CanonCameraSettings.MacroMode', 
  'exif.maker.Canon.CanonCameraSettings.ManualFlashOutput', 
  'exif.maker.Canon.CanonCameraSettings.MaxAperture', 
  'exif.maker.Canon.CanonCameraSettings.MeteringMode', 
  'exif.maker.Canon.CanonCameraSettings.MinAperture', 
  'exif.maker.Canon.CanonCameraSettings.PhotoEffect', 
  'exif.maker.Canon.CanonCameraSettings.Quality', 
  'exif.maker.Canon.CanonCameraSettings.RecordMode', 
  'exif.maker.Canon.CanonCameraSettings.SRAWQuality', 
  'exif.maker.Canon.CanonCameraSettings.Saturation', 
  'exif.maker.Canon.CanonCameraSettings.SelfTimer', 
  'exif.maker.Canon.CanonCameraSettings.Sharpness', 
  'exif.maker.Canon.CanonCameraSettings.ShortFocal', 
  'exif.maker.Canon.CanonCameraSettings.SpotMeteringMode', 
  'exif.maker.Canon.CanonCameraSettings.ZoomSourceWidth', 
  'exif.maker.Canon.CanonCameraSettings.ZoomTargetWidth', 
  'exif.maker.Canon.CanonFileInfo', 
  'exif.maker.Canon.CanonFileLength', 
  'exif.maker.Canon.CanonFirmwareVersion', 
  'exif.maker.Canon.CanonFlags', 
  'exif.maker.Canon.CanonFlashInfo', 
  'exif.maker.Canon.CanonFocalLength', 
  'exif.maker.Canon.CanonImageType', 
  'exif.maker.Canon.CanonModelID', 
  'exif.maker.Canon.CanonPanorama', 
  'exif.maker.Canon.CanonShotInfo', 
  'exif.maker.Canon.CanonShotInfo.AEBBracketValue', 
  'exif.maker.Canon.CanonShotInfo.AFPointsInFocus', 
  'exif.maker.Canon.CanonShotInfo.AutoExposureBracketing', 
  'exif.maker.Canon.CanonShotInfo.AutoISO', 
  'exif.maker.Canon.CanonShotInfo.AutoRotate', 
  'exif.maker.Canon.CanonShotInfo.BaseISO', 
  'exif.maker.Canon.CanonShotInfo.BulbDuration', 
  'exif.maker.Canon.CanonShotInfo.CameraType', 
  'exif.maker.Canon.CanonShotInfo.ControlMode', 
  'exif.maker.Canon.CanonShotInfo.ExposureCompensation', 
  'exif.maker.Canon.CanonShotInfo.ExposureTime', 
  'exif.maker.Canon.CanonShotInfo.FNumber', 
  'exif.maker.Canon.CanonShotInfo.FlashExposureComp', 
  'exif.maker.Canon.CanonShotInfo.FlashGuideNumber', 
  'exif.maker.Canon.CanonShotInfo.FlashOutput', 
  'exif.maker.Canon.CanonShotInfo.FocusDistanceLower', 
  'exif.maker.Canon.CanonShotInfo.FocusDistanceUpper', 
  'exif.maker.Canon.CanonShotInfo.MeasuredEV', 
  'exif.maker.Canon.CanonShotInfo.MeasuredEV2', 
  'exif.maker.Canon.CanonShotInfo.NDFilter', 
  'exif.maker.Canon.CanonShotInfo.OpticalZoomCode', 
  'exif.maker.Canon.CanonShotInfo.SelfTimer2', 
  'exif.maker.Canon.CanonShotInfo.SequenceNumber', 
  'exif.maker.Canon.CanonShotInfo.SlowShutter', 
  'exif.maker.Canon.CanonShotInfo.TargetAperture', 
  'exif.maker.Canon.CanonShotInfo.TargetExposureTime', 
  'exif.maker.Canon.CanonShotInfo.WhiteBalance', 
  'exif.maker.Canon.Categories', 
  'exif.maker.Canon.ColorBalance', 
  'exif.maker.Canon.ColorData', 
  'exif.maker.Canon.ColorInfo', 
  'exif.maker.Canon.ColorSpace', 
  'exif.maker.Canon.ColorTemperature', 
  'exif.maker.Canon.CustomFunctions', 
  'exif.maker.Canon.CustomFunctions1D', 
  'exif.maker.Canon.CustomFunctions2', 
  'exif.maker.Canon.DateStampMode', 
  'exif.maker.Canon.DustRemovalData', 
  'exif.maker.Canon.FaceDetect1', 
  'exif.maker.Canon.FaceDetect2', 
  'exif.maker.Canon.FileNumber', 
  'exif.maker.Canon.FirmwareRevision', 
  'exif.maker.Canon.ImageUniqueID', 
  'exif.maker.Canon.InternalSerialNumber', 
  'exif.maker.Canon.LensModel', 
  'exif.maker.Canon.LightingOpt', 
  'exif.maker.Canon.MeasuredColor', 
  'exif.maker.Canon.ModifiedInfo', 
  'exif.maker.Canon.MyColors', 
  'exif.maker.Canon.OriginalDecisionDataOffset', 
  'exif.maker.Canon.OwnerName', 
  'exif.maker.Canon.PersonalFunctionValues', 
  'exif.maker.Canon.PersonalFunctions', 
  'exif.maker.Canon.PreviewImageInfo', 
  'exif.maker.Canon.ProcessingInfo', 
  'exif.maker.Canon.RawDataOffset', 
  'exif.maker.Canon.SensorInfo', 
  'exif.maker.Canon.SerialNumber', 
  'exif.maker.Canon.SerialNumberFormat', 
  'exif.maker.Canon.SharpnessFreqTable', 
  'exif.maker.Canon.SharpnessTable', 
  'exif.maker.Canon.SuperMacro', 
  'exif.maker.Canon.ThumbnailImageValidArea', 
  'exif.maker.Canon.ToneCurveMatching', 
  'exif.maker.Canon.ToneCurveTable', 
  'exif.maker.Canon.UnknownD30', 
  'exif.maker.Canon.VRDOffset', 
  'exif.maker.Canon.VignettingCorr', 
  'exif.maker.Canon.VignettingCorr2', 
  'exif.maker.Canon.WhiteBalanceMatching', 
  'exif.maker.Canon.WhiteBalanceTable', 
  'exif.maker.Nikon.AFInfo', 
  'exif.maker.Nikon.AFInfo2', 
  'exif.maker.Nikon.AFResponse', 
  'exif.maker.Nikon.AFTune', 
  'exif.maker.Nikon.ActiveD-Lighting', 
  'exif.maker.Nikon.AuxiliaryLens', 
  'exif.maker.Nikon.ColorBalance', 
  'exif.maker.Nikon.ColorBalanceA', 
  'exif.maker.Nikon.ColorHue', 
  'exif.maker.Nikon.ColorMode', 
  'exif.maker.Nikon.ColorSpace', 
  'exif.maker.Nikon.ContrastCurve', 
  'exif.maker.Nikon.CropHiSpeed', 
  'exif.maker.Nikon.DataDump', 
  'exif.maker.Nikon.DeletedImageCount', 
  'exif.maker.Nikon.DigitalZoom', 
  'exif.maker.Nikon.DistortInfo', 
  'exif.maker.Nikon.ExposureBracketValue', 
  'exif.maker.Nikon.ExposureDifference', 
  'exif.maker.Nikon.ExposureTuning', 
  'exif.maker.Nikon.FileInfo', 
  'exif.maker.Nikon.FlashExposureBracketValue', 
  'exif.maker.Nikon.FlashExposureComp', 
  'exif.maker.Nikon.FlashInfo', 
  'exif.maker.Nikon.FlashMode', 
  'exif.maker.Nikon.FlashSetting', 
  'exif.maker.Nikon.FlashType', 
  'exif.maker.Nikon.FocusMode', 
  'exif.maker.Nikon.HighISONoiseReduction', 
  'exif.maker.Nikon.HueAdjustment', 
  'exif.maker.Nikon.ISO', 
  'exif.maker.Nikon.ISOInfo', 
  'exif.maker.Nikon.ISOSelection', 
  'exif.maker.Nikon.ISOSetting', 
  'exif.maker.Nikon.ImageAdjustment', 
  'exif.maker.Nikon.ImageAuthentication', 
  'exif.maker.Nikon.ImageBoundary', 
  'exif.maker.Nikon.ImageCount', 
  'exif.maker.Nikon.ImageDataSize', 
  'exif.maker.Nikon.ImageOptimization', 
  'exif.maker.Nikon.ImageProcessing', 
  'exif.maker.Nikon.ImageStabilization', 
  'exif.maker.Nikon.Lens', 
  'exif.maker.Nikon.LensData', 
  'exif.maker.Nikon.LensFStops', 
  'exif.maker.Nikon.LensType', 
  'exif.maker.Nikon.LightSource', 
  'exif.maker.Nikon.LinearizationTable', 
  'exif.maker.Nikon.MakerNoteVersion', 
  'exif.maker.Nikon.ManualFocusDistance', 
  'exif.maker.Nikon.MultiExposure', 
  'exif.maker.Nikon.NEFBitDepth', 
  'exif.maker.Nikon.NEFCompression', 
  'exif.maker.Nikon.NikonCaptureData', 
  'exif.maker.Nikon.NikonCaptureOffsets', 
  'exif.maker.Nikon.NikonCaptureOutput', 
  'exif.maker.Nikon.NikonCaptureVersion', 
  'exif.maker.Nikon.NikonICCProfile', 
  'exif.maker.Nikon.NikonPreview', 
  'exif.maker.Nikon.NikonScanIFD', 
  'exif.maker.Nikon.NoiseReduction', 
  'exif.maker.Nikon.PictureControl', 
  'exif.maker.Nikon.PowerUpTime', 
  'exif.maker.Nikon.PrintIM', 
  'exif.maker.Nikon.ProgramShift', 
  'exif.maker.Nikon.Quality', 
  'exif.maker.Nikon.RawImageCenter', 
  'exif.maker.Nikon.RetouchHistory', 
  'exif.maker.Nikon.Saturation', 
  'exif.maker.Nikon.SceneAssist', 
  'exif.maker.Nikon.SceneMode', 
  'exif.maker.Nikon.SensorPixelSize', 
  'exif.maker.Nikon.SerialNumber', 
  'exif.maker.Nikon.SerialNumber2', 
  'exif.maker.Nikon.Sharpness', 
  'exif.maker.Nikon.ShootingMode', 
  'exif.maker.Nikon.ShotInfo', 
  'exif.maker.Nikon.ShutterCount', 
  'exif.maker.Nikon.ToneComp', 
  'exif.maker.Nikon.ToningEffect', 
  'exif.maker.Nikon.VRInfo', 
  'exif.maker.Nikon.VariProgram', 
  'exif.maker.Nikon.VignetteControl', 
  'exif.maker.Nikon.WB_RBLevels', 
  'exif.maker.Nikon.WhiteBalance', 
  'exif.maker.Nikon.WhiteBalanceFineTune', 
  'exif.maker.Nikon.WorldTime', 
  'exif.maker.Pentax.AEInfo', 
  'exif.maker.Pentax.AELock', 
  'exif.maker.Pentax.AEMeteringSegments', 
  'exif.maker.Pentax.AFAdjustment', 
  'exif.maker.Pentax.AFInfo', 
  'exif.maker.Pentax.AFPoint', 
  'exif.maker.Pentax.AFPointsInFocus', 
  'exif.maker.Pentax.AutoBracketing', 
  'exif.maker.Pentax.BatteryInfo', 
  'exif.maker.Pentax.BlackPoint', 
  'exif.maker.Pentax.BlueBalance', 
  'exif.maker.Pentax.CPUFirmwareVersion', 
  'exif.maker.Pentax.CameraInfo', 
  'exif.maker.Pentax.CameraModel', 
  'exif.maker.Pentax.ColorInfo', 
  'exif.maker.Pentax.ColorMatrixA', 
  'exif.maker.Pentax.ColorMatrixB', 
  'exif.maker.Pentax.ColorSpace', 
  'exif.maker.Pentax.ColorTemperature', 
  'exif.maker.Pentax.Contrast', 
  'exif.maker.Pentax.DSPFirmwareVersion', 
  'exif.maker.Pentax.DataDump', 
  'exif.maker.Pentax.Date', 
  'exif.maker.Pentax.DestinationCityName', 
  'exif.maker.Pentax.DestinationDST', 
  'exif.maker.Pentax.DigitalFilter', 
  'exif.maker.Pentax.DigitalZoom', 
  'exif.maker.Pentax.DriveMode', 
  'exif.maker.Pentax.DynamicRangeExpansion', 
  'exif.maker.Pentax.EVStepInfo', 
  'exif.maker.Pentax.EffectiveLV', 
  'exif.maker.Pentax.ExposureCompensation', 
  'exif.maker.Pentax.ExposureTime', 
  'exif.maker.Pentax.FNumber', 
  'exif.maker.Pentax.FirmwareVersion', 
  'exif.maker.Pentax.Flash', 
  'exif.maker.Pentax.FlashADump', 
  'exif.maker.Pentax.FlashBDump', 
  'exif.maker.Pentax.FlashExposureCompensation', 
  'exif.maker.Pentax.FlashInfo', 
  'exif.maker.Pentax.FocalLength', 
  'exif.maker.Pentax.Focus', 
  'exif.maker.Pentax.FocusPosition', 
  'exif.maker.Pentax.FrameNumber', 
  'exif.maker.Pentax.HighISONoiseReduction', 
  'exif.maker.Pentax.HomeCityName', 
  'exif.maker.Pentax.HometownDST', 
  'exif.maker.Pentax.HuffmanTable', 
  'exif.maker.Pentax.ISO', 
  'exif.maker.Pentax.ImageAreaOffset', 
  'exif.maker.Pentax.ImageProcessing', 
  'exif.maker.Pentax.ImageTone', 
  'exif.maker.Pentax.LensInfo', 
  'exif.maker.Pentax.LensType', 
  'exif.maker.Pentax.LightReading', 
  'exif.maker.Pentax.MeteringMode', 
  'exif.maker.Pentax.NoiseReduction', 
  'exif.maker.Pentax.PictureMode', 
  'exif.maker.Pentax.PreviewImageBorders', 
  'exif.maker.Pentax.PreviewLength', 
  'exif.maker.Pentax.PreviewOffset', 
  'exif.maker.Pentax.PreviewResolution', 
  'exif.maker.Pentax.PrintIM', 
  'exif.maker.Pentax.Quality', 
  'exif.maker.Pentax.RawImageSize', 
  'exif.maker.Pentax.RedBalance', 
  'exif.maker.Pentax.Saturation', 
  'exif.maker.Pentax.SaturationInfo', 
  'exif.maker.Pentax.SensitivityAdjust', 
  'exif.maker.Pentax.SerialNumber', 
  'exif.maker.Pentax.ShakeReduction', 
  'exif.maker.Pentax.Sharpness', 
  'exif.maker.Pentax.ShootingMode', 
  'exif.maker.Pentax.ShotInfo', 
  'exif.maker.Pentax.ShutterCount', 
  'exif.maker.Pentax.Size', 
  'exif.maker.Pentax.Temperature', 
  'exif.maker.Pentax.Time', 
  'exif.maker.Pentax.ToneCurve', 
  'exif.maker.Pentax.ToneCurves', 
  'exif.maker.Pentax.UnknownInfo', 
  'exif.maker.Pentax.Version', 
  'exif.maker.Pentax.WB_RGGBLevelsCloudy', 
  'exif.maker.Pentax.WB_RGGBLevelsDaylight', 
  'exif.maker.Pentax.WB_RGGBLevelsFlash', 
  'exif.maker.Pentax.WB_RGGBLevelsFluorescentD', 
  'exif.maker.Pentax.WB_RGGBLevelsFluorescentN', 
  'exif.maker.Pentax.WB_RGGBLevelsFluorescentW', 
  'exif.maker.Pentax.WB_RGGBLevelsShade', 
  'exif.maker.Pentax.WB_RGGBLevelsTungsten', 
  'exif.maker.Pentax.WhiteBalance', 
  'exif.maker.Pentax.WhiteBalanceMode', 
  'exif.maker.Pentax.WhitePoint', 
  'exif.maker.Pentax.WorldTimeLocation', 
  'exif.tiff.Artist', 
  'exif.tiff.BitsPerSample', 
  'exif.tiff.CellLength', 
  'exif.tiff.CellWidth', 
  'exif.tiff.Compression', 
  'exif.tiff.Copyright', 
  'exif.tiff.DateTime', 
  'exif.tiff.DocumentName', 
  'exif.tiff.Exif IFD Pointer', 
  'exif.tiff.FillOrder', 
  'exif.tiff.FlashEnergy', 
  'exif.tiff.FreeOffsets', 
  'exif.tiff.GPS IFD Pointer', 
  'exif.tiff.GrayResponseUnit', 
  'exif.tiff.HostComputer', 
  'exif.tiff.IPTC-NAA', 
  'exif.tiff.ImageDescription', 
  'exif.tiff.ImageLength', 
  'exif.tiff.ImageWidth', 
  'exif.tiff.JPEGInterchangeFormat', 
  'exif.tiff.JPEGInterchangeFormatLength', 
  'exif.tiff.Make', 
  'exif.tiff.MaxSampleValue', 
  'exif.tiff.MinSampleValue', 
  'exif.tiff.Model', 
  'exif.tiff.OldSubfileType', 
  'exif.tiff.Orientation', 
  'exif.tiff.PageName', 
  'exif.tiff.PageNumber', 
  'exif.tiff.PhotometricInterpretation', 
  'exif.tiff.PlanarConfiguration', 
  'exif.tiff.Predictor', 
  'exif.tiff.PrimaryChromaticities', 
  'exif.tiff.PrintIM', 
  'exif.tiff.ProcessingSoftware', 
  'exif.tiff.Rating', 
  'exif.tiff.RatingPercent', 
  'exif.tiff.ReferenceBlackWhite', 
  'exif.tiff.ResolutionUnit', 
  'exif.tiff.RowsPerStrip', 
  'exif.tiff.SamplesPerPixel', 
  'exif.tiff.Software', 
  'exif.tiff.StripByteCounts', 
  'exif.tiff.StripOffsets', 
  'exif.tiff.SubfileType', 
  'exif.tiff.Thresholding', 
  'exif.tiff.TransferFunction', 
  'exif.tiff.WhitePoint', 
  'exif.tiff.XPAuthor', 
  'exif.tiff.XPComment', 
  'exif.tiff.XPKeywords', 
  'exif.tiff.XPSubject', 
  'exif.tiff.XPTitle', 
  'exif.tiff.XPosition', 
  'exif.tiff.XResolution', 
  'exif.tiff.YCbCrCoefficients', 
  'exif.tiff.YCbCrPositioning', 
  'exif.tiff.YCbCrSubSampling', 
  'exif.tiff.YPosition', 
  'exif.tiff.YResolution', 
  'iptc.ARM Identifier', 
  'iptc.ARM Version', 
  'iptc.Action Advised', 
  'iptc.Audio Duration', 
  'iptc.Audio Sampling Resolution', 
  'iptc.Audio Type', 
  'iptc.Audion Outcue', 
  'iptc.Audion Sampling Rate', 
  'iptc.By-line', 
  'iptc.By-line Title', 
  'iptc.Caption/Abstract', 
  'iptc.Category', 
  'iptc.City', 
  'iptc.Coded Character Set', 
  'iptc.Confirmed ObjectData Size', 
  'iptc.Contact', 
  'iptc.Content Location Code', 
  'iptc.Content Location Name', 
  'iptc.Copyright Notice', 
  'iptc.Country/Primary Location Code', 
  'iptc.Country/Primary Location Name', 
  'iptc.Credit', 
  'iptc.Date Created', 
  'iptc.Date Sent', 
  'iptc.Destination', 
  'iptc.Digital Creation Date', 
  'iptc.Digital Creation Time', 
  'iptc.Edit Status', 
  'iptc.Editorial Update', 
  'iptc.Envelope Number', 
  'iptc.Envelope Priority', 
  'iptc.Expiration Date', 
  'iptc.Expiration Time', 
  'iptc.File Format', 
  'iptc.File Format Version', 
  'iptc.Fixture Identifier', 
  'iptc.Headline', 
  'iptc.Image Orientation', 
  'iptc.Image Type', 
  'iptc.Keywords', 
  'iptc.Language Identifier', 
  'iptc.Max Subfile Size', 
  'iptc.Maximum ObjectData Size', 
  'iptc.Model Version', 
  'iptc.Object Attribute Reference', 
  'iptc.Object Cycle', 
  'iptc.Object Name', 
  'iptc.Object Type Reference', 
  'iptc.ObjectData Preview Data', 
  'iptc.ObjectData Preview File Format', 
  'iptc.ObjectData Preview File Format Version', 
  'iptc.ObjectData Size Announced', 
  'iptc.Original Transmission Reference', 
  'iptc.Originating Program', 
  'iptc.Product I.D.', 
  'iptc.Program Version', 
  'iptc.Province/State', 
  'iptc.Rasterized Caption', 
  'iptc.Record Version', 
  'iptc.Reference Date', 
  'iptc.Reference Service', 
  'iptc.Reference number', 
  'iptc.Release Date', 
  'iptc.Release Time', 
  'iptc.Service Identifier', 
  'iptc.Size Mode', 
  'iptc.Source', 
  'iptc.Special Instructions', 
  'iptc.Subfile', 
  'iptc.Subject Reference', 
  'iptc.Subject Reference[Detail Name]', 
  'iptc.Subject Reference[IPR]', 
  'iptc.Subject Reference[Matter Name]', 
  'iptc.Subject Reference[Name]', 
  'iptc.Subject Reference[Number]', 
  'iptc.Sublocation', 
  'iptc.Supplemental Category', 
  'iptc.Time Created', 
  'iptc.Time Sent', 
  'iptc.UNO', 
  'iptc.Urgency', 
  'iptc.Writer/Editor', 
  'xmp.Iptc4xmpCore:CiAdrCity', 
  'xmp.Iptc4xmpCore:CiAdrCtry', 
  'xmp.Iptc4xmpCore:CiAdrExtadr', 
  'xmp.Iptc4xmpCore:CiAdrPcode', 
  'xmp.Iptc4xmpCore:CiEmailWork', 
  'xmp.Iptc4xmpCore:CiTelWork', 
  'xmp.Iptc4xmpCore:CiUrlWork', 
  'xmp.Iptc4xmpCore:CountryCode', 
  'xmp.Iptc4xmpCore:CreatorContactInfo', 
  'xmp.Iptc4xmpCore:DateCreated', 
  'xmp.Iptc4xmpCore:IntellectualGenre', 
  'xmp.Iptc4xmpCore:Location', 
  'xmp.Iptc4xmpCore:Scene', 
  'xmp.Iptc4xmpCore:SubjectCode', 
  'xmp.aux:Firmware', 
  'xmp.aux:Lens', 
  'xmp.aux:LensID', 
  'xmp.aux:LensInfo', 
  'xmp.aux:SerialNumber', 
  'xmp.crs:AutoBrightness', 
  'xmp.crs:AutoContrast', 
  'xmp.crs:AutoExposure', 
  'xmp.crs:AutoShadows', 
  'xmp.crs:Balance', 
  'xmp.crs:BlueHue', 
  'xmp.crs:BlueSaturation', 
  'xmp.crs:Brightness', 
  'xmp.crs:CameraProfile', 
  'xmp.crs:ChromaticAberrationB', 
  'xmp.crs:ChromaticAberrationR', 
  'xmp.crs:ColorNoiseReduction', 
  'xmp.crs:Contrast', 
  'xmp.crs:CropAngle', 
  'xmp.crs:CropBottom', 
  'xmp.crs:CropHeight', 
  'xmp.crs:CropLeft', 
  'xmp.crs:CropRight', 
  'xmp.crs:CropTop', 
  'xmp.crs:CropUnits', 
  'xmp.crs:CropWidth', 
  'xmp.crs:Exposure', 
  'xmp.crs:GreenHue', 
  'xmp.crs:GreenSaturation', 
  'xmp.crs:HasCrop', 
  'xmp.crs:HasSettings', 
  'xmp.crs:LuminanceSmoothing', 
  'xmp.crs:RawFileName', 
  'xmp.crs:RedHue', 
  'xmp.crs:RedSaturation', 
  'xmp.crs:Saturation', 
  'xmp.crs:ShadowTint', 
  'xmp.crs:Shadows', 
  'xmp.crs:Sharpness', 
  'xmp.crs:Temperature', 
  'xmp.crs:Tint', 
  'xmp.crs:ToneCurve', 
  'xmp.crs:ToneCurveName', 
  'xmp.crs:Version', 
  'xmp.crs:VignetteAmount', 
  'xmp.crs:VignetteMidpoint', 
  'xmp.crs:WhiteBalance', 
  'xmp.dc:CreatorTool', 
  'xmp.dc:Type', 
  'xmp.dc:contributor', 
  'xmp.dc:coverage', 
  'xmp.dc:creator', 
  'xmp.dc:date', 
  'xmp.dc:description', 
  'xmp.dc:format', 
  'xmp.dc:identifier', 
  'xmp.dc:language', 
  'xmp.dc:publisher', 
  'xmp.dc:relation', 
  'xmp.dc:rights', 
  'xmp.dc:source', 
  'xmp.dc:subject', 
  'xmp.dc:title', 
  'xmp.digiKam:TagsList', 
  'xmp.exif:ApertureValue', 
  'xmp.exif:Balance', 
  'xmp.exif:BrightnessValue', 
  'xmp.exif:CFAPattern', 
  'xmp.exif:ColorSpace', 
  'xmp.exif:ComponentsConfiguration', 
  'xmp.exif:CompressedBitsPerPixel', 
  'xmp.exif:Contrast', 
  'xmp.exif:CustomRendered', 
  'xmp.exif:DateTimeDigitized', 
  'xmp.exif:DateTimeOriginal', 
  'xmp.exif:DeviceSettingDescription', 
  'xmp.exif:DigitalZoomRatio', 
  'xmp.exif:ExifVersion', 
  'xmp.exif:ExposureBiasValue', 
  'xmp.exif:ExposureIndex', 
  'xmp.exif:ExposureMode', 
  'xmp.exif:ExposureProgram', 
  'xmp.exif:ExposureTime', 
  'xmp.exif:FNumber', 
  'xmp.exif:FileSource', 
  'xmp.exif:Fired', 
  'xmp.exif:Flash', 
  'xmp.exif:FlashEnergy', 
  'xmp.exif:FlashpixVersion', 
  'xmp.exif:FocalLength', 
  'xmp.exif:FocalLengthIn35mmFilm', 
  'xmp.exif:FocalPlaneResolutionUnit', 
  'xmp.exif:FocalPlaneXResolution', 
  'xmp.exif:FocalPlaneYResolution', 
  'xmp.exif:Function', 
  'xmp.exif:GPSAltitude', 
  'xmp.exif:GPSAltitudeRef', 
  'xmp.exif:GPSAreaInformation', 
  'xmp.exif:GPSDOP', 
  'xmp.exif:GPSDestBearing', 
  'xmp.exif:GPSDestBearingRef', 
  'xmp.exif:GPSDestDistance', 
  'xmp.exif:GPSDestDistanceRef', 
  'xmp.exif:GPSDestLatitude', 
  'xmp.exif:GPSDestLongitude', 
  'xmp.exif:GPSDifferential', 
  'xmp.exif:GPSImgDirection', 
  'xmp.exif:GPSImgDirectionRef', 
  'xmp.exif:GPSLatitude', 
  'xmp.exif:GPSLongitude', 
  'xmp.exif:GPSMapDatum', 
  'xmp.exif:GPSMeasureMode', 
  'xmp.exif:GPSProcessingMethod', 
  'xmp.exif:GPSSatellites', 
  'xmp.exif:GPSSpeed', 
  'xmp.exif:GPSSpeedRef', 
  'xmp.exif:GPSStatus', 
  'xmp.exif:GPSTimeStamp', 
  'xmp.exif:GPSTrack', 
  'xmp.exif:GPSTrackRef', 
  'xmp.exif:GPSVersionID', 
  'xmp.exif:GainControl', 
  'xmp.exif:ISOSpeedRatings', 
  'xmp.exif:ImageUniqueID', 
  'xmp.exif:LightSource', 
  'xmp.exif:MaxApertureValue', 
  'xmp.exif:MeteringMode', 
  'xmp.exif:Mode', 
  'xmp.exif:OECF', 
  'xmp.exif:PixelXDimension', 
  'xmp.exif:PixelYDimension', 
  'xmp.exif:RedEyeMode', 
  'xmp.exif:RelatedSoundFile', 
  'xmp.exif:Return', 
  'xmp.exif:Saturation', 
  'xmp.exif:SceneCaptureType', 
  'xmp.exif:SceneType', 
  'xmp.exif:SensingMethod', 
  'xmp.exif:Sharpness', 
  'xmp.exif:ShutterSpeedValue', 
  'xmp.exif:SpatialFrequencyResponse', 
  'xmp.exif:SpectralSensitivity', 
  'xmp.exif:SubjectArea', 
  'xmp.exif:SubjectDistance', 
  'xmp.exif:SubjectDistanceRange', 
  'xmp.exif:SubjectLocation', 
  'xmp.exif:UserComment', 
  'xmp.exif:WhiteBalance', 
  'xmp.lr:hierarchicalSubject', 
  'xmp.photoshop:AuthorsPosition', 
  'xmp.photoshop:CaptionWriter', 
  'xmp.photoshop:Category', 
  'xmp.photoshop:City', 
  'xmp.photoshop:ColorMode', 
  'xmp.photoshop:Country', 
  'xmp.photoshop:Credit', 
  'xmp.photoshop:DateCreated', 
  'xmp.photoshop:Headline', 
  'xmp.photoshop:ICCProfile', 
  'xmp.photoshop:Instructions', 
  'xmp.photoshop:Source', 
  'xmp.photoshop:State', 
  'xmp.photoshop:SupplementalCategories', 
  'xmp.photoshop:TransmissionReference', 
  'xmp.photoshop:Urgency', 
  'xmp.rdf:about', 
  'xmp.tiff:Artist', 
  'xmp.tiff:BitsPerSample', 
  'xmp.tiff:Compression', 
  'xmp.tiff:Copyright', 
  'xmp.tiff:DateTime', 
  'xmp.tiff:ImageDescription', 
  'xmp.tiff:ImageLength', 
  'xmp.tiff:ImageWidth', 
  'xmp.tiff:Make', 
  'xmp.tiff:Model', 
  'xmp.tiff:Orientation', 
  'xmp.tiff:PhotometricInterpretation', 
  'xmp.tiff:PlanarConfiguration', 
  'xmp.tiff:PrimaryChromaticities', 
  'xmp.tiff:ReferenceBlackWhite', 
  'xmp.tiff:ResolutionUnit', 
  'xmp.tiff:SamplesPerPixel', 
  'xmp.tiff:Software', 
  'xmp.tiff:TransferFunction', 
  'xmp.tiff:WhitePoint', 
  'xmp.tiff:XResolution', 
  'xmp.tiff:YCbCrCoefficients', 
  'xmp.tiff:YCbCrPositioning', 
  'xmp.tiff:YCbCrSubSampling', 
  'xmp.tiff:YResolution', 
  'xmp.x:xmptk', 
  'xmp.xmlns:Iptc4xmpCore', 
  'xmp.xmlns:aux', 
  'xmp.xmlns:crs', 
  'xmp.xmlns:dc', 
  'xmp.xmlns:digiKam', 
  'xmp.xmlns:exif', 
  'xmp.xmlns:lr', 
  'xmp.xmlns:photoshop', 
  'xmp.xmlns:rdf', 
  'xmp.xmlns:tiff', 
  'xmp.xmlns:x', 
  'xmp.xmlns:xmp', 
  'xmp.xmlns:xmpBJ', 
  'xmp.xmlns:xmpDM', 
  'xmp.xmlns:xmpMM', 
  'xmp.xmlns:xmpNote', 
  'xmp.xmlns:xmpRights', 
  'xmp.xmlns:xmpTPg', 
  'xmp.xmp:Advisory', 
  'xmp.xmp:BaseURL', 
  'xmp.xmp:CreateDate', 
  'xmp.xmp:CreatorTool', 
  'xmp.xmp:Identifier', 
  'xmp.xmp:Label', 
  'xmp.xmp:MetadataDate', 
  'xmp.xmp:ModifyDate', 
  'xmp.xmp:Nickname', 
  'xmp.xmp:Rating', 
  'xmp.xmp:Thumbnails', 
  'xmp.xmpBJ:JobRef', 
  'xmp.xmpMM:DerivedFrom', 
  'xmp.xmpMM:DocumentID', 
  'xmp.xmpMM:History', 
  'xmp.xmpMM:InstanceID', 
  'xmp.xmpMM:LastURL', 
  'xmp.xmpMM:ManageTo', 
  'xmp.xmpMM:ManageUI', 
  'xmp.xmpMM:ManagedFrom', 
  'xmp.xmpMM:Manager', 
  'xmp.xmpMM:ManagerVariant', 
  'xmp.xmpMM:RenditionClass', 
  'xmp.xmpMM:RenditionParams', 
  'xmp.xmpMM:VersionID', 
  'xmp.xmpMM:Versions', 
  'xmp.xmpNote:HasExtendedXMP', 
  'xmp.xmpRights:Certificate', 
  'xmp.xmpRights:Marked', 
  'xmp.xmpRights:Owner', 
  'xmp.xmpRights:UsageTerms', 
  'xmp.xmpRights:WebStatement', 
  'xmp.xmpTPg:Colorants', 
  'xmp.xmpTPg:Fonts', 
  'xmp.xmpTPg:MaxPageSize', 
  'xmp.xmpTPg:NPages', 
  'xmp.xmpTPg:PlateNames'
);

3/ tu installes le plugin : le fichier de conf que tu as créé va exclure définitivement toute référence aux métadonnées citées. Le fichier fournit en exemple fait que le plugin ne connaitra plus que les métadonnées magic.GPS


Pour retrouver toutes les métadonnées, ou en rajouter certaines, il faut désinstaller le plugin, re-modifier le fichier de conf, et réinstaller le plugin : modifier le fichier sans procéder à la ré-installation ne fera rien. çà n'est pas très souple, mais il s'agit à mon sens d'une fonctionnalité tellement spécifique que mettre en place une interface serait une perte de temps.

A noter que lors des mises à jours, si de nouvelles métadonnées sont apportées par la nouvelle version du plugin, il te faudra si tu veux les ignorer,  les rajouter à ce fichier.


ps: çà fait un moment que cette fonctionnalité est implémentée, j'espère qu'elle fonctionne encore ^_^;


Mes photos avec Piwigo évidemment !
[ www.grum.fr ] [ photos.grum.fr ]

Hors ligne

#3 2011-03-10 21:20:05

Zaphod
Former Piwigo Team
Toulouse
2006-11-13
2422

Re: [Résolu] [AMetadata] Permettre de synchroniser uniquement les données GPS ?

grum a écrit:

Ce genre d'option n'étant pas à mon sens indispensable (les métadonnées magic sont relativement peu gourmandes en comparaison aux métadonnées exif par exemple), je n'implémenterais pas d'option via l'interface de configuration.

En fait l'idée c'était de rendre justement le fonctionnement plus simple et moins gourmand pour qui n'utilise AMD que pour GMaps.

J'ai déja divisé par 3 la taille de mes tables amd en ne sélectionnant plus que les magic et iptc.
Mais la table amd_images_tags fait toujours plus de 50% de la taille totale de ma BDD.

J'essaierai ta solution, puisque je ne pense pas avoir besoin de plus de tags à court terme.
(en plus, c'est toujours faisable de revenir en arrière au prix d'une reconfig et d'une resynchro)

Je vais essayer aussi de limiter les métadonnées à l'export de mes images (avant publication sous piwigo).

J'avoue que je ne comprends pas trop pourquoi tout ça prend beaucoup plus de place que les exifs + keywords de piwigo.
Y a-t-il un moyen de déterminer quelles métadonnées prennent de la place dans la base ?

Hors ligne

#4 2011-03-10 21:42:03

Zaphod
Former Piwigo Team
Toulouse
2006-11-13
2422

Re: [Résolu] [AMetadata] Permettre de synchroniser uniquement les données GPS ?

En fait le coup du fichier de config me semble bien meilleur que de modifier les images en elles-même.
Ca me permet par exemple de virer les mots clés dans AMD alors que j'en ai besoin dans Piwigo.

Il faut bien désinstaller le plugin, pas juste le désactiver ou totalement le supprimer ?

Sinon ne pas avoir d'interface ne me gène pas du tout... l'important est de pouvoir avoir accès à la fonctionnalité.

Hors ligne

#5 2011-03-10 23:23:17

grum
Former Piwigo Team
50% Nantes - 50% Paris
2007-09-10
2502

Re: [Résolu] [AMetadata] Permettre de synchroniser uniquement les données GPS ?

Zaphod a écrit:

Je vais essayer aussi de limiter les métadonnées à l'export de mes images (avant publication sous piwigo).

pas forcément une bonne idée : si tu changes d'avis, et que tu souhaites plus tard afficher d'autres métadonnées, si elles ne sont plus dans les photos il te faudra ré-uploader les photos...

Zaphod a écrit:

J'avoue que je ne comprends pas trop pourquoi tout ça prend beaucoup plus de place que les exifs + keywords de piwigo.
Y a-t-il un moyen de déterminer quelles métadonnées prennent de la place dans la base ?

les métadonnées qui prennent de la place....

chez moi (8900 photos, 160000 métadonnées magic) :

Code:

tagId                                    moyenne   maxi    Nb     nbChar
magic.GPS.GoogleMaps                     143.6681  146    4082  586453.1842
magic.ShotInfo.Flash.RedEyeMode           35.8688   36    7615  273140.9120
magic.GPS.Altitude                        50.9827   52    3993  203573.9211
magic.GPS.Localization                    48.1355   50    4082  196489.1110
magic.Processing.PostProcessingDateTime   19.0000   19    8193  155667.0000
magic.ShotInfo.DateTime                   19.0000   19    8148  154812.0000
magic.Processing.PostProcessingSoftware   17.9534   38    8156  146427.9304
magic.Processing.Software                 17.8292   38    8117  144719.6164
magic.ShotInfo.Flash.Fired                16.9585   18    7615  129138.9775
magic.Processing.OriginalFileName         17.8977   28    6207  111091.0239
magic.Camera.Make                         12.5446   21    7626   95665.1196
magic.GPS.Latitude                        22.6999   23    4082   92660.9918
magic.Camera.Model                        11.6462   25    7626   88813.9212
magic.GPS.Longitude                       21.4333   23    4101   87897.9633
magic.Image.Dimension                      8.9654   10    7607   68199.7978
magic.GPS.LongitudeNum                    15.0449   16    4101   61699.1349
magic.GPS.LatitudeNum                     14.4836   15    4082   59122.0552
magic.ShotInfo.FocalLength                 7.2573    8    7595   55119.1935
magic.ShotInfo.FocalLengthIn35mm           7.4289    8    7318   54364.6902
magic.ShotInfo.Exposure                    5.6482    7    7626   43073.1732
magic.ShotInfo.Aperture                    5.0557    6    7616   38504.2112
magic.Image.Width                          3.9858    5    7676   30595.0008
magic.Image.Height                         3.9798    4    7607   30274.3386
magic.ShotInfo.ISO                         3.0115    4    7386   22242.9390
magic.Author.Keywords                    187.0000  187      55   10285.0000
magic.Author.Artist                        5.1579   18     665    3430.0035
magic.ShotInfo.Lens                       36.4557   38      79    2880.0003
magic.Author.Copyright                     4.0560   48     679    2754.0240
magic.Author.ImageTitle                   25.5048   29     105    2678.0040
magic.Author.Comment                       1.7167   19     420     721.0140

voilà la requête SQL qui donne çà :

Code:

SELECT 
  tagId, avg( length( value ) ) AS moyenne, 
  max( length( value ) ) AS maxi, 
  count( pait.numId ) AS Nb, 
  avg( length( value ) ) * count( pait.numId ) AS nbChar
FROM 
  `piwigo_amd_images_tags` pait
      JOIN `piwigo_amd_used_tags` paut 
      ON pait.numId = paut.numId
GROUP BY pait.numId
ORDER BY nbChar DESC

à noter qu'il faut tout multiplier par deux, car l'index de la table prends autant de place que les données...




bonne question : en regardant de plus près le code, je me rends compte que la prise en compte du fichier doit aussi se faire lors de l'activation du plugin...


Mes photos avec Piwigo évidemment !
[ www.grum.fr ] [ photos.grum.fr ]

Hors ligne

#6 2011-03-11 00:25:50

Zaphod
Former Piwigo Team
Toulouse
2006-11-13
2422

Re: [Résolu] [AMetadata] Permettre de synchroniser uniquement les données GPS ?

Merci pour la requête.

J'obtiens aussi en premier GPS.GoogleMaps, ensuite les keywords qui bouffent pas mal.
Quelles sont les données GPS indispensables pour faire fonctionner GMaps ?

Hors ligne

#7 2011-03-12 14:29:24

Zaphod
Former Piwigo Team
Toulouse
2006-11-13
2422

Re: [Résolu] [AMetadata] Permettre de synchroniser uniquement les données GPS ?

Quand j'active le plugin avec ce fichier, la ligne du fichier de conf s'affiche suivie d'un warning :

Cannot modify header information - headers already sent by (output started at (...)/AMetaData/activatePlugin.conf.php:16) in /photos/include/page_header.php on line 98)

Hors ligne

#8 2011-03-12 18:43:45

grum
Former Piwigo Team
50% Nantes - 50% Paris
2007-09-10
2502

Re: [Résolu] [AMetadata] Permettre de synchroniser uniquement les données GPS ?

comme tout fichier PHP, çà doit commencer par <?php et finir par ?>
:-)


Mes photos avec Piwigo évidemment !
[ www.grum.fr ] [ photos.grum.fr ]

Hors ligne

#9 2011-03-13 00:21:10

Zaphod
Former Piwigo Team
Toulouse
2006-11-13
2422

Re: [Résolu] [AMetadata] Permettre de synchroniser uniquement les données GPS ?

Hum...
C'est donc pour ça que Notepad++ ne me faisait pas la coloration syntaxique...

Bon en tous cas, ça marche parfaitement, juste en désactivant/réactivant (donc a priori on ne perd même pas sa config).
Un grand merci !

Dernière modification par Zaphod (2011-03-13 00:21:21)

Hors ligne

#10 2011-03-13 00:28:10

Zaphod
Former Piwigo Team
Toulouse
2006-11-13
2422

Re: [Résolu] [AMetadata] Permettre de synchroniser uniquement les données GPS ?

J'ajoute qu'a priori on peut ne garder que LatitudeNum et LongitudeNum.
Ce qui fait une base très réduite.

Hors ligne

#11 2011-03-13 10:32:57

LucMorizur
Membre
Vienne (Isère, 38)
2009-03-01
1969

Re: [Résolu] [AMetadata] Permettre de synchroniser uniquement les données GPS ?

Excusez-moi de m'immiscer, d'autant que je n'utiliserai probablement jamais ces fonctionnalités ; mais ce fil ne mériterait-il pas un petit résumé dans le forum Trucs et astuces ?

Dernière modification par LucMorizur (2011-03-13 10:33:58)

Hors ligne

#12 2011-03-13 11:17:26

Gotcha
Ex Equipe Piwigo
Pierrelatte (26)
2007-03-14
13331

Re: [Résolu] [AMetadata] Permettre de synchroniser uniquement les données GPS ?

LucMorizur a écrit:

Excusez-moi de m'immiscer, d'autant que je n'utiliserai probablement jamais ces fonctionnalités ; mais ce fil ne mériterait-il pas un petit résumé dans le forum Trucs et astuces ?

+1
Alléger sa BDD avec AMD ce n'est pas du luxe ^_^


Ayez comme premier réflexe de consulter le wiki.
Ensuite, veuillez effectuer une recherche sur le forum avant de poser votre question.

LE FAIRE EST LE REVELATEUR DE L'ETRE

Hors ligne

#13 2011-09-15 10:09:07

Gotcha
Ex Equipe Piwigo
Pierrelatte (26)
2007-03-14
13331

Re: [Résolu] [AMetadata] Permettre de synchroniser uniquement les données GPS ?

@ Zaphod : Est-ce que l'astuce est toujours valable chez toi ? Car j'ai essayé sans succès :-(


Ayez comme premier réflexe de consulter le wiki.
Ensuite, veuillez effectuer une recherche sur le forum avant de poser votre question.

LE FAIRE EST LE REVELATEUR DE L'ETRE

Hors ligne

#14 2011-09-15 12:01:39

Zaphod
Former Piwigo Team
Toulouse
2006-11-13
2422

Re: [Résolu] [AMetadata] Permettre de synchroniser uniquement les données GPS ?

A priori oui.

Hors ligne

#15 2011-09-15 12:17:37

Zaphod
Former Piwigo Team
Toulouse
2006-11-13
2422

Re: [Résolu] [AMetadata] Permettre de synchroniser uniquement les données GPS ?

Je viens de retester et ça marche, effectivement.

La procédure :

1) Créer le fichier activatePlugin.conf.php dans le répertoire AMetaData

2) Le contenu du fichier, pour ne garder que les infos GPS, doit être :

Code:

<?php
$conf['amd_FillDataBaseExcludeTags']=array(
  'magic.Author.Artist', 
  'magic.Author.Comment', 
  'magic.Author.Copyright', 
  'magic.Author.ImageTitle', 
  'magic.Author.Keywords', 
  'magic.Camera.Make', 
  'magic.Camera.Model', 
  'magic.GPS.GoogleMaps', 
  'magic.GPS.Altitude', 
  'magic.GPS.Latitude', 
  'magic.GPS.Localization', 
  'magic.GPS.Longitude', 
  /* 
 * keep magic.GPS.* metadata fields
 *
  'magic.GPS.LatitudeNum', 
  'magic.GPS.LongitudeNum',
*/
  'magic.Image.Dimension', 
  'magic.Image.Height', 
  'magic.Image.Width', 
  'magic.Processing.OriginalFileName', 
  'magic.Processing.PostProcessingDateTime', 
  'magic.Processing.PostProcessingSoftware', 
  'magic.Processing.Software', 
  'magic.ShotInfo.Aperture', 
  'magic.ShotInfo.DateTime', 
  'magic.ShotInfo.Exposure', 
  'magic.ShotInfo.Flash.Fired', 
  'magic.ShotInfo.Flash.RedEyeMode', 
  'magic.ShotInfo.FocalLength', 
  'magic.ShotInfo.FocalLengthIn35mm', 
  'magic.ShotInfo.ISO', 
  'magic.ShotInfo.Lens', 

  'com.comment', 
  'exif.Unknown.AFCP_IPTC', 
  'exif.Unknown.ColorResponseUnit', 
  'exif.Unknown.FreeByteCounts', 
  'exif.Unknown.GrayResponseCurve', 
  'exif.Unknown.ICC_Profile', 
  'exif.Unknown.T4Options', 
  'exif.Unknown.T6Options', 
  'exif.Unknown.TIFF-EPStandardID', 
  'exif.exif.ApertureValue', 
  'exif.exif.Balance', 
  'exif.exif.BrightnessValue', 
  'exif.exif.CFAPattern', 
  'exif.exif.ColorSpace', 
  'exif.exif.ComponentsConfiguration', 
  'exif.exif.CompressedBitsPerPixel', 
  'exif.exif.Contrast', 
  'exif.exif.CustomRendered', 
  'exif.exif.DateTimeDigitized', 
  'exif.exif.DateTimeOriginal', 
  'exif.exif.DeviceSettingDescription', 
  'exif.exif.DigitalZoomRatio', 
  'exif.exif.ExifVersion', 
  'exif.exif.ExposureBiasValue', 
  'exif.exif.ExposureIndex', 
  'exif.exif.ExposureMode', 
  'exif.exif.ExposureProgram', 
  'exif.exif.ExposureTime', 
  'exif.exif.FNumber', 
  'exif.exif.FileSource', 
  'exif.exif.Flash', 
  'exif.exif.FlashpixVersion', 
  'exif.exif.FocalLength', 
  'exif.exif.FocalLengthIn35mmFilm', 
  'exif.exif.FocalPlaneResolutionUnit', 
  'exif.exif.FocalPlaneXResolution', 
  'exif.exif.FocalPlaneYResolution', 
  'exif.exif.GainControl', 
  'exif.exif.Gamma', 
  'exif.exif.ISOSpeedRatings', 
  'exif.exif.ImageHistory', 
  'exif.exif.ImageNumber', 
  'exif.exif.ImageUniqueID', 
  'exif.exif.Interoperability IFD Pointer', 
  'exif.exif.LightSource', 
  'exif.exif.MakerNote', 
  'exif.exif.MaxApertureValue', 
  'exif.exif.MeteringMode', 
  'exif.exif.Noise', 
  'exif.exif.OECF', 
  'exif.exif.PixelXDimension', 
  'exif.exif.PixelYDimension', 
  'exif.exif.RelatedSoundFile', 
  'exif.exif.Saturation', 
  'exif.exif.SceneCaptureType', 
  'exif.exif.SceneType', 
  'exif.exif.SecurityClassification', 
  'exif.exif.SelfTimerMode', 
  'exif.exif.SensingMethod', 
  'exif.exif.Sharpness', 
  'exif.exif.ShutterSpeedValue', 
  'exif.exif.SpatialFrequencyResponse', 
  'exif.exif.SpectralSensitivity', 
  'exif.exif.SubjectArea', 
  'exif.exif.SubjectDistance', 
  'exif.exif.SubjectDistanceRange', 
  'exif.exif.SubjectLocation', 
  'exif.exif.SubsecTime', 
  'exif.exif.SubsecTimeDigitized', 
  'exif.exif.SubsecTimeOriginal', 
  'exif.exif.UserComment', 
  'exif.gps.GPSAltitude', 
  'exif.gps.GPSAltitudeRef', 
  'exif.gps.GPSAreaInformation', 
  'exif.gps.GPSDOP', 
  'exif.gps.GPSDateStamp', 
  'exif.gps.GPSDestBearing', 
  'exif.gps.GPSDestBearingRef', 
  'exif.gps.GPSDestDistance', 
  'exif.gps.GPSDestDistanceRef', 
  'exif.gps.GPSDestLatitude', 
  'exif.gps.GPSDestLatitudeRef', 
  'exif.gps.GPSDestLongitude', 
  'exif.gps.GPSDestLongitudeRef', 
  'exif.gps.GPSDifferential', 
  'exif.gps.GPSImgDirection', 
  'exif.gps.GPSImgDirectionRef', 
  'exif.gps.GPSLatitude', 
  'exif.gps.GPSLatitudeRef', 
  'exif.gps.GPSLongitude', 
  'exif.gps.GPSLongitudeRef', 
  'exif.gps.GPSMapDatum', 
  'exif.gps.GPSMeasureMode', 
  'exif.gps.GPSProcessingMethod', 
  'exif.gps.GPSSatellites', 
  'exif.gps.GPSSpeed', 
  'exif.gps.GPSSpeedRef', 
  'exif.gps.GPSStatus', 
  'exif.gps.GPSTimeStamp', 
  'exif.gps.GPSTrack', 
  'exif.gps.GPSTrackRef', 
  'exif.gps.GPSVersionID', 
  'exif.maker.Canon.AFMicroAdj', 
  'exif.maker.Canon.AFPointsInFocus1D', 
  'exif.maker.Canon.CanonAFInfo', 
  'exif.maker.Canon.CanonAFInfo2', 
  'exif.maker.Canon.CanonCameraInfo', 
  'exif.maker.Canon.CanonCameraInfo.CameraOrientation', 
  'exif.maker.Canon.CanonCameraInfo.CameraTemperature', 
  'exif.maker.Canon.CanonCameraInfo.ColorTemperature', 
  'exif.maker.Canon.CanonCameraInfo.DirectoryIndex', 
  'exif.maker.Canon.CanonCameraInfo.ExposureTime', 
  'exif.maker.Canon.CanonCameraInfo.FNumber', 
  'exif.maker.Canon.CanonCameraInfo.FileIndex', 
  'exif.maker.Canon.CanonCameraInfo.FirmwareVersion', 
  'exif.maker.Canon.CanonCameraInfo.FlashMeteringMode', 
  'exif.maker.Canon.CanonCameraInfo.FocalLength', 
  'exif.maker.Canon.CanonCameraInfo.FocusDistanceLower', 
  'exif.maker.Canon.CanonCameraInfo.FocusDistanceUpper', 
  'exif.maker.Canon.CanonCameraInfo.HighlightTonePriority', 
  'exif.maker.Canon.CanonCameraInfo.ISO', 
  'exif.maker.Canon.CanonCameraInfo.LensModel', 
  'exif.maker.Canon.CanonCameraInfo.LensType', 
  'exif.maker.Canon.CanonCameraInfo.LongFocal', 
  'exif.maker.Canon.CanonCameraInfo.MacroMagnification', 
  'exif.maker.Canon.CanonCameraInfo.ShortFocal', 
  'exif.maker.Canon.CanonCameraInfo.WhiteBalance', 
  'exif.maker.Canon.CanonCameraSettings', 
  'exif.maker.Canon.CanonCameraSettings.AESetting', 
  'exif.maker.Canon.CanonCameraSettings.AFPoint', 
  'exif.maker.Canon.CanonCameraSettings.CameraISO', 
  'exif.maker.Canon.CanonCameraSettings.CanonExposureMode', 
  'exif.maker.Canon.CanonCameraSettings.CanonFlashMode', 
  'exif.maker.Canon.CanonCameraSettings.CanonImageSize', 
  'exif.maker.Canon.CanonCameraSettings.ColorTone', 
  'exif.maker.Canon.CanonCameraSettings.ContinuousDrive', 
  'exif.maker.Canon.CanonCameraSettings.Contrast', 
  'exif.maker.Canon.CanonCameraSettings.DigitalZoom', 
  'exif.maker.Canon.CanonCameraSettings.DisplayAperture', 
  'exif.maker.Canon.CanonCameraSettings.EasyMode', 
  'exif.maker.Canon.CanonCameraSettings.FlashActivity', 
  'exif.maker.Canon.CanonCameraSettings.FlashBits', 
  'exif.maker.Canon.CanonCameraSettings.FocalUnits', 
  'exif.maker.Canon.CanonCameraSettings.FocusContinuous', 
  'exif.maker.Canon.CanonCameraSettings.FocusMode', 
  'exif.maker.Canon.CanonCameraSettings.FocusRange', 
  'exif.maker.Canon.CanonCameraSettings.ImageStabilization', 
  'exif.maker.Canon.CanonCameraSettings.LensType', 
  'exif.maker.Canon.CanonCameraSettings.LongFocal', 
  'exif.maker.Canon.CanonCameraSettings.MacroMode', 
  'exif.maker.Canon.CanonCameraSettings.ManualFlashOutput', 
  'exif.maker.Canon.CanonCameraSettings.MaxAperture', 
  'exif.maker.Canon.CanonCameraSettings.MeteringMode', 
  'exif.maker.Canon.CanonCameraSettings.MinAperture', 
  'exif.maker.Canon.CanonCameraSettings.PhotoEffect', 
  'exif.maker.Canon.CanonCameraSettings.Quality', 
  'exif.maker.Canon.CanonCameraSettings.RecordMode', 
  'exif.maker.Canon.CanonCameraSettings.SRAWQuality', 
  'exif.maker.Canon.CanonCameraSettings.Saturation', 
  'exif.maker.Canon.CanonCameraSettings.SelfTimer', 
  'exif.maker.Canon.CanonCameraSettings.Sharpness', 
  'exif.maker.Canon.CanonCameraSettings.ShortFocal', 
  'exif.maker.Canon.CanonCameraSettings.SpotMeteringMode', 
  'exif.maker.Canon.CanonCameraSettings.ZoomSourceWidth', 
  'exif.maker.Canon.CanonCameraSettings.ZoomTargetWidth', 
  'exif.maker.Canon.CanonFileInfo', 
  'exif.maker.Canon.CanonFileLength', 
  'exif.maker.Canon.CanonFirmwareVersion', 
  'exif.maker.Canon.CanonFlags', 
  'exif.maker.Canon.CanonFlashInfo', 
  'exif.maker.Canon.CanonFocalLength', 
  'exif.maker.Canon.CanonImageType', 
  'exif.maker.Canon.CanonModelID', 
  'exif.maker.Canon.CanonPanorama', 
  'exif.maker.Canon.CanonShotInfo', 
  'exif.maker.Canon.CanonShotInfo.AEBBracketValue', 
  'exif.maker.Canon.CanonShotInfo.AFPointsInFocus', 
  'exif.maker.Canon.CanonShotInfo.AutoExposureBracketing', 
  'exif.maker.Canon.CanonShotInfo.AutoISO', 
  'exif.maker.Canon.CanonShotInfo.AutoRotate', 
  'exif.maker.Canon.CanonShotInfo.BaseISO', 
  'exif.maker.Canon.CanonShotInfo.BulbDuration', 
  'exif.maker.Canon.CanonShotInfo.CameraType', 
  'exif.maker.Canon.CanonShotInfo.ControlMode', 
  'exif.maker.Canon.CanonShotInfo.ExposureCompensation', 
  'exif.maker.Canon.CanonShotInfo.ExposureTime', 
  'exif.maker.Canon.CanonShotInfo.FNumber', 
  'exif.maker.Canon.CanonShotInfo.FlashExposureComp', 
  'exif.maker.Canon.CanonShotInfo.FlashGuideNumber', 
  'exif.maker.Canon.CanonShotInfo.FlashOutput', 
  'exif.maker.Canon.CanonShotInfo.FocusDistanceLower', 
  'exif.maker.Canon.CanonShotInfo.FocusDistanceUpper', 
  'exif.maker.Canon.CanonShotInfo.MeasuredEV', 
  'exif.maker.Canon.CanonShotInfo.MeasuredEV2', 
  'exif.maker.Canon.CanonShotInfo.NDFilter', 
  'exif.maker.Canon.CanonShotInfo.OpticalZoomCode', 
  'exif.maker.Canon.CanonShotInfo.SelfTimer2', 
  'exif.maker.Canon.CanonShotInfo.SequenceNumber', 
  'exif.maker.Canon.CanonShotInfo.SlowShutter', 
  'exif.maker.Canon.CanonShotInfo.TargetAperture', 
  'exif.maker.Canon.CanonShotInfo.TargetExposureTime', 
  'exif.maker.Canon.CanonShotInfo.WhiteBalance', 
  'exif.maker.Canon.Categories', 
  'exif.maker.Canon.ColorBalance', 
  'exif.maker.Canon.ColorData', 
  'exif.maker.Canon.ColorInfo', 
  'exif.maker.Canon.ColorSpace', 
  'exif.maker.Canon.ColorTemperature', 
  'exif.maker.Canon.CustomFunctions', 
  'exif.maker.Canon.CustomFunctions1D', 
  'exif.maker.Canon.CustomFunctions2', 
  'exif.maker.Canon.DateStampMode', 
  'exif.maker.Canon.DustRemovalData', 
  'exif.maker.Canon.FaceDetect1', 
  'exif.maker.Canon.FaceDetect2', 
  'exif.maker.Canon.FileNumber', 
  'exif.maker.Canon.FirmwareRevision', 
  'exif.maker.Canon.ImageUniqueID', 
  'exif.maker.Canon.InternalSerialNumber', 
  'exif.maker.Canon.LensModel', 
  'exif.maker.Canon.LightingOpt', 
  'exif.maker.Canon.MeasuredColor', 
  'exif.maker.Canon.ModifiedInfo', 
  'exif.maker.Canon.MyColors', 
  'exif.maker.Canon.OriginalDecisionDataOffset', 
  'exif.maker.Canon.OwnerName', 
  'exif.maker.Canon.PersonalFunctionValues', 
  'exif.maker.Canon.PersonalFunctions', 
  'exif.maker.Canon.PreviewImageInfo', 
  'exif.maker.Canon.ProcessingInfo', 
  'exif.maker.Canon.RawDataOffset', 
  'exif.maker.Canon.SensorInfo', 
  'exif.maker.Canon.SerialNumber', 
  'exif.maker.Canon.SerialNumberFormat', 
  'exif.maker.Canon.SharpnessFreqTable', 
  'exif.maker.Canon.SharpnessTable', 
  'exif.maker.Canon.SuperMacro', 
  'exif.maker.Canon.ThumbnailImageValidArea', 
  'exif.maker.Canon.ToneCurveMatching', 
  'exif.maker.Canon.ToneCurveTable', 
  'exif.maker.Canon.UnknownD30', 
  'exif.maker.Canon.VRDOffset', 
  'exif.maker.Canon.VignettingCorr', 
  'exif.maker.Canon.VignettingCorr2', 
  'exif.maker.Canon.WhiteBalanceMatching', 
  'exif.maker.Canon.WhiteBalanceTable', 
  'exif.maker.Nikon.AFInfo', 
  'exif.maker.Nikon.AFInfo2', 
  'exif.maker.Nikon.AFResponse', 
  'exif.maker.Nikon.AFTune', 
  'exif.maker.Nikon.ActiveD-Lighting', 
  'exif.maker.Nikon.AuxiliaryLens', 
  'exif.maker.Nikon.ColorBalance', 
  'exif.maker.Nikon.ColorBalanceA', 
  'exif.maker.Nikon.ColorHue', 
  'exif.maker.Nikon.ColorMode', 
  'exif.maker.Nikon.ColorSpace', 
  'exif.maker.Nikon.ContrastCurve', 
  'exif.maker.Nikon.CropHiSpeed', 
  'exif.maker.Nikon.DataDump', 
  'exif.maker.Nikon.DeletedImageCount', 
  'exif.maker.Nikon.DigitalZoom', 
  'exif.maker.Nikon.DistortInfo', 
  'exif.maker.Nikon.ExposureBracketValue', 
  'exif.maker.Nikon.ExposureDifference', 
  'exif.maker.Nikon.ExposureTuning', 
  'exif.maker.Nikon.FileInfo', 
  'exif.maker.Nikon.FlashExposureBracketValue', 
  'exif.maker.Nikon.FlashExposureComp', 
  'exif.maker.Nikon.FlashInfo', 
  'exif.maker.Nikon.FlashMode', 
  'exif.maker.Nikon.FlashSetting', 
  'exif.maker.Nikon.FlashType', 
  'exif.maker.Nikon.FocusMode', 
  'exif.maker.Nikon.HighISONoiseReduction', 
  'exif.maker.Nikon.HueAdjustment', 
  'exif.maker.Nikon.ISO', 
  'exif.maker.Nikon.ISOInfo', 
  'exif.maker.Nikon.ISOSelection', 
  'exif.maker.Nikon.ISOSetting', 
  'exif.maker.Nikon.ImageAdjustment', 
  'exif.maker.Nikon.ImageAuthentication', 
  'exif.maker.Nikon.ImageBoundary', 
  'exif.maker.Nikon.ImageCount', 
  'exif.maker.Nikon.ImageDataSize', 
  'exif.maker.Nikon.ImageOptimization', 
  'exif.maker.Nikon.ImageProcessing', 
  'exif.maker.Nikon.ImageStabilization', 
  'exif.maker.Nikon.Lens', 
  'exif.maker.Nikon.LensData', 
  'exif.maker.Nikon.LensFStops', 
  'exif.maker.Nikon.LensType', 
  'exif.maker.Nikon.LightSource', 
  'exif.maker.Nikon.LinearizationTable', 
  'exif.maker.Nikon.MakerNoteVersion', 
  'exif.maker.Nikon.ManualFocusDistance', 
  'exif.maker.Nikon.MultiExposure', 
  'exif.maker.Nikon.NEFBitDepth', 
  'exif.maker.Nikon.NEFCompression', 
  'exif.maker.Nikon.NikonCaptureData', 
  'exif.maker.Nikon.NikonCaptureOffsets', 
  'exif.maker.Nikon.NikonCaptureOutput', 
  'exif.maker.Nikon.NikonCaptureVersion', 
  'exif.maker.Nikon.NikonICCProfile', 
  'exif.maker.Nikon.NikonPreview', 
  'exif.maker.Nikon.NikonScanIFD', 
  'exif.maker.Nikon.NoiseReduction', 
  'exif.maker.Nikon.PictureControl', 
  'exif.maker.Nikon.PowerUpTime', 
  'exif.maker.Nikon.PrintIM', 
  'exif.maker.Nikon.ProgramShift', 
  'exif.maker.Nikon.Quality', 
  'exif.maker.Nikon.RawImageCenter', 
  'exif.maker.Nikon.RetouchHistory', 
  'exif.maker.Nikon.Saturation', 
  'exif.maker.Nikon.SceneAssist', 
  'exif.maker.Nikon.SceneMode', 
  'exif.maker.Nikon.SensorPixelSize', 
  'exif.maker.Nikon.SerialNumber', 
  'exif.maker.Nikon.SerialNumber2', 
  'exif.maker.Nikon.Sharpness', 
  'exif.maker.Nikon.ShootingMode', 
  'exif.maker.Nikon.ShotInfo', 
  'exif.maker.Nikon.ShutterCount', 
  'exif.maker.Nikon.ToneComp', 
  'exif.maker.Nikon.ToningEffect', 
  'exif.maker.Nikon.VRInfo', 
  'exif.maker.Nikon.VariProgram', 
  'exif.maker.Nikon.VignetteControl', 
  'exif.maker.Nikon.WB_RBLevels', 
  'exif.maker.Nikon.WhiteBalance', 
  'exif.maker.Nikon.WhiteBalanceFineTune', 
  'exif.maker.Nikon.WorldTime', 
  'exif.maker.Pentax.AEInfo', 
  'exif.maker.Pentax.AELock', 
  'exif.maker.Pentax.AEMeteringSegments', 
  'exif.maker.Pentax.AFAdjustment', 
  'exif.maker.Pentax.AFInfo', 
  'exif.maker.Pentax.AFPoint', 
  'exif.maker.Pentax.AFPointsInFocus', 
  'exif.maker.Pentax.AutoBracketing', 
  'exif.maker.Pentax.BatteryInfo', 
  'exif.maker.Pentax.BlackPoint', 
  'exif.maker.Pentax.BlueBalance', 
  'exif.maker.Pentax.CPUFirmwareVersion', 
  'exif.maker.Pentax.CameraInfo', 
  'exif.maker.Pentax.CameraModel', 
  'exif.maker.Pentax.ColorInfo', 
  'exif.maker.Pentax.ColorMatrixA', 
  'exif.maker.Pentax.ColorMatrixB', 
  'exif.maker.Pentax.ColorSpace', 
  'exif.maker.Pentax.ColorTemperature', 
  'exif.maker.Pentax.Contrast', 
  'exif.maker.Pentax.DSPFirmwareVersion', 
  'exif.maker.Pentax.DataDump', 
  'exif.maker.Pentax.Date', 
  'exif.maker.Pentax.DestinationCityName', 
  'exif.maker.Pentax.DestinationDST', 
  'exif.maker.Pentax.DigitalFilter', 
  'exif.maker.Pentax.DigitalZoom', 
  'exif.maker.Pentax.DriveMode', 
  'exif.maker.Pentax.DynamicRangeExpansion', 
  'exif.maker.Pentax.EVStepInfo', 
  'exif.maker.Pentax.EffectiveLV', 
  'exif.maker.Pentax.ExposureCompensation', 
  'exif.maker.Pentax.ExposureTime', 
  'exif.maker.Pentax.FNumber', 
  'exif.maker.Pentax.FirmwareVersion', 
  'exif.maker.Pentax.Flash', 
  'exif.maker.Pentax.FlashADump', 
  'exif.maker.Pentax.FlashBDump', 
  'exif.maker.Pentax.FlashExposureCompensation', 
  'exif.maker.Pentax.FlashInfo', 
  'exif.maker.Pentax.FocalLength', 
  'exif.maker.Pentax.Focus', 
  'exif.maker.Pentax.FocusPosition', 
  'exif.maker.Pentax.FrameNumber', 
  'exif.maker.Pentax.HighISONoiseReduction', 
  'exif.maker.Pentax.HomeCityName', 
  'exif.maker.Pentax.HometownDST', 
  'exif.maker.Pentax.HuffmanTable', 
  'exif.maker.Pentax.ISO', 
  'exif.maker.Pentax.ImageAreaOffset', 
  'exif.maker.Pentax.ImageProcessing', 
  'exif.maker.Pentax.ImageTone', 
  'exif.maker.Pentax.LensInfo', 
  'exif.maker.Pentax.LensType', 
  'exif.maker.Pentax.LightReading', 
  'exif.maker.Pentax.MeteringMode', 
  'exif.maker.Pentax.NoiseReduction', 
  'exif.maker.Pentax.PictureMode', 
  'exif.maker.Pentax.PreviewImageBorders', 
  'exif.maker.Pentax.PreviewLength', 
  'exif.maker.Pentax.PreviewOffset', 
  'exif.maker.Pentax.PreviewResolution', 
  'exif.maker.Pentax.PrintIM', 
  'exif.maker.Pentax.Quality', 
  'exif.maker.Pentax.RawImageSize', 
  'exif.maker.Pentax.RedBalance', 
  'exif.maker.Pentax.Saturation', 
  'exif.maker.Pentax.SaturationInfo', 
  'exif.maker.Pentax.SensitivityAdjust', 
  'exif.maker.Pentax.SerialNumber', 
  'exif.maker.Pentax.ShakeReduction', 
  'exif.maker.Pentax.Sharpness', 
  'exif.maker.Pentax.ShootingMode', 
  'exif.maker.Pentax.ShotInfo', 
  'exif.maker.Pentax.ShutterCount', 
  'exif.maker.Pentax.Size', 
  'exif.maker.Pentax.Temperature', 
  'exif.maker.Pentax.Time', 
  'exif.maker.Pentax.ToneCurve', 
  'exif.maker.Pentax.ToneCurves', 
  'exif.maker.Pentax.UnknownInfo', 
  'exif.maker.Pentax.Version', 
  'exif.maker.Pentax.WB_RGGBLevelsCloudy', 
  'exif.maker.Pentax.WB_RGGBLevelsDaylight', 
  'exif.maker.Pentax.WB_RGGBLevelsFlash', 
  'exif.maker.Pentax.WB_RGGBLevelsFluorescentD', 
  'exif.maker.Pentax.WB_RGGBLevelsFluorescentN', 
  'exif.maker.Pentax.WB_RGGBLevelsFluorescentW', 
  'exif.maker.Pentax.WB_RGGBLevelsShade', 
  'exif.maker.Pentax.WB_RGGBLevelsTungsten', 
  'exif.maker.Pentax.WhiteBalance', 
  'exif.maker.Pentax.WhiteBalanceMode', 
  'exif.maker.Pentax.WhitePoint', 
  'exif.maker.Pentax.WorldTimeLocation', 
  'exif.tiff.Artist', 
  'exif.tiff.BitsPerSample', 
  'exif.tiff.CellLength', 
  'exif.tiff.CellWidth', 
  'exif.tiff.Compression', 
  'exif.tiff.Copyright', 
  'exif.tiff.DateTime', 
  'exif.tiff.DocumentName', 
  'exif.tiff.Exif IFD Pointer', 
  'exif.tiff.FillOrder', 
  'exif.tiff.FlashEnergy', 
  'exif.tiff.FreeOffsets', 
  'exif.tiff.GPS IFD Pointer', 
  'exif.tiff.GrayResponseUnit', 
  'exif.tiff.HostComputer', 
  'exif.tiff.IPTC-NAA', 
  'exif.tiff.ImageDescription', 
  'exif.tiff.ImageLength', 
  'exif.tiff.ImageWidth', 
  'exif.tiff.JPEGInterchangeFormat', 
  'exif.tiff.JPEGInterchangeFormatLength', 
  'exif.tiff.Make', 
  'exif.tiff.MaxSampleValue', 
  'exif.tiff.MinSampleValue', 
  'exif.tiff.Model', 
  'exif.tiff.OldSubfileType', 
  'exif.tiff.Orientation', 
  'exif.tiff.PageName', 
  'exif.tiff.PageNumber', 
  'exif.tiff.PhotometricInterpretation', 
  'exif.tiff.PlanarConfiguration', 
  'exif.tiff.Predictor', 
  'exif.tiff.PrimaryChromaticities', 
  'exif.tiff.PrintIM', 
  'exif.tiff.ProcessingSoftware', 
  'exif.tiff.Rating', 
  'exif.tiff.RatingPercent', 
  'exif.tiff.ReferenceBlackWhite', 
  'exif.tiff.ResolutionUnit', 
  'exif.tiff.RowsPerStrip', 
  'exif.tiff.SamplesPerPixel', 
  'exif.tiff.Software', 
  'exif.tiff.StripByteCounts', 
  'exif.tiff.StripOffsets', 
  'exif.tiff.SubfileType', 
  'exif.tiff.Thresholding', 
  'exif.tiff.TransferFunction', 
  'exif.tiff.WhitePoint', 
  'exif.tiff.XPAuthor', 
  'exif.tiff.XPComment', 
  'exif.tiff.XPKeywords', 
  'exif.tiff.XPSubject', 
  'exif.tiff.XPTitle', 
  'exif.tiff.XPosition', 
  'exif.tiff.XResolution', 
  'exif.tiff.YCbCrCoefficients', 
  'exif.tiff.YCbCrPositioning', 
  'exif.tiff.YCbCrSubSampling', 
  'exif.tiff.YPosition', 
  'exif.tiff.YResolution', 
  'iptc.ARM Identifier', 
  'iptc.ARM Version', 
  'iptc.Action Advised', 
  'iptc.Audio Duration', 
  'iptc.Audio Sampling Resolution', 
  'iptc.Audio Type', 
  'iptc.Audion Outcue', 
  'iptc.Audion Sampling Rate', 
  'iptc.By-line', 
  'iptc.By-line Title', 
  'iptc.Caption/Abstract', 
  'iptc.Category', 
  'iptc.City', 
  'iptc.Coded Character Set', 
  'iptc.Confirmed ObjectData Size', 
  'iptc.Contact', 
  'iptc.Content Location Code', 
  'iptc.Content Location Name', 
  'iptc.Copyright Notice', 
  'iptc.Country/Primary Location Code', 
  'iptc.Country/Primary Location Name',
  'iptc.Credit', 
  'iptc.Date Created', 
  'iptc.Date Sent', 
  'iptc.Destination', 
  'iptc.Digital Creation Date', 
  'iptc.Digital Creation Time', 
  'iptc.Edit Status', 
  'iptc.Editorial Update', 
  'iptc.Envelope Number', 
  'iptc.Envelope Priority', 
  'iptc.Expiration Date', 
  'iptc.Expiration Time', 
  'iptc.File Format', 
  'iptc.File Format Version', 
  'iptc.Fixture Identifier', 
  'iptc.Headline', 
  'iptc.Image Orientation', 
  'iptc.Image Type', 
  'iptc.Keywords', 
  'iptc.Language Identifier', 
  'iptc.Max Subfile Size', 
  'iptc.Maximum ObjectData Size', 
  'iptc.Model Version', 
  'iptc.Object Attribute Reference', 
  'iptc.Object Cycle', 
  'iptc.Object Name', 
  'iptc.Object Type Reference', 
  'iptc.ObjectData Preview Data', 
  'iptc.ObjectData Preview File Format', 
  'iptc.ObjectData Preview File Format Version', 
  'iptc.ObjectData Size Announced', 
  'iptc.Original Transmission Reference', 
  'iptc.Originating Program', 
  'iptc.Product I.D.', 
  'iptc.Program Version', 
  'iptc.Province/State', 
  'iptc.Rasterized Caption', 
  'iptc.Record Version', 
  'iptc.Reference Date', 
  'iptc.Reference Service', 
  'iptc.Reference number', 
  'iptc.Release Date', 
  'iptc.Release Time', 
  'iptc.Service Identifier', 
  'iptc.Size Mode', 
  'iptc.Source', 
  'iptc.Special Instructions', 
  'iptc.Subfile', 
  'iptc.Subject Reference', 
  'iptc.Subject Reference[Detail Name]', 
  'iptc.Subject Reference[IPR]', 
  'iptc.Subject Reference[Matter Name]', 
  'iptc.Subject Reference[Name]', 
  'iptc.Subject Reference[Number]', 
  'iptc.Sublocation',
  'iptc.Supplemental Category', 
  'iptc.Time Created', 
  'iptc.Time Sent', 
  'iptc.UNO', 
  'iptc.Urgency', 
  'iptc.Writer/Editor', 
  'xmp.Iptc4xmpCore:CiAdrCity', 
  'xmp.Iptc4xmpCore:CiAdrCtry', 
  'xmp.Iptc4xmpCore:CiAdrExtadr', 
  'xmp.Iptc4xmpCore:CiAdrPcode', 
  'xmp.Iptc4xmpCore:CiEmailWork', 
  'xmp.Iptc4xmpCore:CiTelWork', 
  'xmp.Iptc4xmpCore:CiUrlWork', 
  'xmp.Iptc4xmpCore:CountryCode', 
  'xmp.Iptc4xmpCore:CreatorContactInfo', 
  'xmp.Iptc4xmpCore:DateCreated', 
  'xmp.Iptc4xmpCore:IntellectualGenre', 
  'xmp.Iptc4xmpCore:Location', 
  'xmp.Iptc4xmpCore:Scene', 
  'xmp.Iptc4xmpCore:SubjectCode', 
  'xmp.aux:Firmware', 
  'xmp.aux:Lens', 
  'xmp.aux:LensID', 
  'xmp.aux:LensInfo', 
  'xmp.aux:SerialNumber', 
  'xmp.crs:AutoBrightness', 
  'xmp.crs:AutoContrast', 
  'xmp.crs:AutoExposure', 
  'xmp.crs:AutoShadows', 
  'xmp.crs:Balance', 
  'xmp.crs:BlueHue', 
  'xmp.crs:BlueSaturation', 
  'xmp.crs:Brightness', 
  'xmp.crs:CameraProfile', 
  'xmp.crs:ChromaticAberrationB', 
  'xmp.crs:ChromaticAberrationR', 
  'xmp.crs:ColorNoiseReduction', 
  'xmp.crs:Contrast', 
  'xmp.crs:CropAngle', 
  'xmp.crs:CropBottom', 
  'xmp.crs:CropHeight', 
  'xmp.crs:CropLeft', 
  'xmp.crs:CropRight', 
  'xmp.crs:CropTop', 
  'xmp.crs:CropUnits', 
  'xmp.crs:CropWidth', 
  'xmp.crs:Exposure', 
  'xmp.crs:GreenHue', 
  'xmp.crs:GreenSaturation', 
  'xmp.crs:HasCrop', 
  'xmp.crs:HasSettings', 
  'xmp.crs:LuminanceSmoothing', 
  'xmp.crs:RawFileName', 
  'xmp.crs:RedHue', 
  'xmp.crs:RedSaturation', 
  'xmp.crs:Saturation', 
  'xmp.crs:ShadowTint', 
  'xmp.crs:Shadows', 
  'xmp.crs:Sharpness', 
  'xmp.crs:Temperature', 
  'xmp.crs:Tint', 
  'xmp.crs:ToneCurve', 
  'xmp.crs:ToneCurveName', 
  'xmp.crs:Version', 
  'xmp.crs:VignetteAmount', 
  'xmp.crs:VignetteMidpoint', 
  'xmp.crs:WhiteBalance', 
  'xmp.dc:CreatorTool', 
  'xmp.dc:Type', 
  'xmp.dc:contributor', 
  'xmp.dc:coverage', 
  'xmp.dc:creator', 
  'xmp.dc:date', 
  'xmp.dc:description', 
  'xmp.dc:format', 
  'xmp.dc:identifier', 
  'xmp.dc:language', 
  'xmp.dc:publisher', 
  'xmp.dc:relation', 
  'xmp.dc:rights', 
  'xmp.dc:source', 
  'xmp.dc:subject', 
  'xmp.dc:title', 
  'xmp.digiKam:TagsList', 
  'xmp.exif:ApertureValue', 
  'xmp.exif:Balance', 
  'xmp.exif:BrightnessValue', 
  'xmp.exif:CFAPattern', 
  'xmp.exif:ColorSpace', 
  'xmp.exif:ComponentsConfiguration', 
  'xmp.exif:CompressedBitsPerPixel', 
  'xmp.exif:Contrast', 
  'xmp.exif:CustomRendered', 
  'xmp.exif:DateTimeDigitized', 
  'xmp.exif:DateTimeOriginal', 
  'xmp.exif:DeviceSettingDescription', 
  'xmp.exif:DigitalZoomRatio', 
  'xmp.exif:ExifVersion', 
  'xmp.exif:ExposureBiasValue', 
  'xmp.exif:ExposureIndex', 
  'xmp.exif:ExposureMode', 
  'xmp.exif:ExposureProgram', 
  'xmp.exif:ExposureTime', 
  'xmp.exif:FNumber', 
  'xmp.exif:FileSource', 
  'xmp.exif:Fired', 
  'xmp.exif:Flash', 
  'xmp.exif:FlashEnergy', 
  'xmp.exif:FlashpixVersion', 
  'xmp.exif:FocalLength', 
  'xmp.exif:FocalLengthIn35mmFilm', 
  'xmp.exif:FocalPlaneResolutionUnit', 
  'xmp.exif:FocalPlaneXResolution', 
  'xmp.exif:FocalPlaneYResolution', 
  'xmp.exif:Function', 
  'xmp.exif:GPSAltitude', 
  'xmp.exif:GPSAltitudeRef', 
  'xmp.exif:GPSAreaInformation', 
  'xmp.exif:GPSDOP', 
  'xmp.exif:GPSDestBearing', 
  'xmp.exif:GPSDestBearingRef', 
  'xmp.exif:GPSDestDistance', 
  'xmp.exif:GPSDestDistanceRef', 
  'xmp.exif:GPSDestLatitude', 
  'xmp.exif:GPSDestLongitude', 
  'xmp.exif:GPSDifferential', 
  'xmp.exif:GPSImgDirection', 
  'xmp.exif:GPSImgDirectionRef', 
  'xmp.exif:GPSLatitude', 
  'xmp.exif:GPSLongitude', 
  'xmp.exif:GPSMapDatum', 
  'xmp.exif:GPSMeasureMode', 
  'xmp.exif:GPSProcessingMethod', 
  'xmp.exif:GPSSatellites', 
  'xmp.exif:GPSSpeed', 
  'xmp.exif:GPSSpeedRef', 
  'xmp.exif:GPSStatus', 
  'xmp.exif:GPSTimeStamp', 
  'xmp.exif:GPSTrack', 
  'xmp.exif:GPSTrackRef', 
  'xmp.exif:GPSVersionID', 
  'xmp.exif:GainControl', 
  'xmp.exif:ISOSpeedRatings', 
  'xmp.exif:ImageUniqueID', 
  'xmp.exif:LightSource', 
  'xmp.exif:MaxApertureValue', 
  'xmp.exif:MeteringMode', 
  'xmp.exif:Mode', 
  'xmp.exif:OECF', 
  'xmp.exif:PixelXDimension', 
  'xmp.exif:PixelYDimension', 
  'xmp.exif:RedEyeMode', 
  'xmp.exif:RelatedSoundFile', 
  'xmp.exif:Return', 
  'xmp.exif:Saturation', 
  'xmp.exif:SceneCaptureType', 
  'xmp.exif:SceneType', 
  'xmp.exif:SensingMethod', 
  'xmp.exif:Sharpness', 
  'xmp.exif:ShutterSpeedValue', 
  'xmp.exif:SpatialFrequencyResponse', 
  'xmp.exif:SpectralSensitivity', 
  'xmp.exif:SubjectArea', 
  'xmp.exif:SubjectDistance', 
  'xmp.exif:SubjectDistanceRange', 
  'xmp.exif:SubjectLocation', 
  'xmp.exif:UserComment', 
  'xmp.exif:WhiteBalance', 
  'xmp.lr:hierarchicalSubject', 
  'xmp.photoshop:AuthorsPosition', 
  'xmp.photoshop:CaptionWriter', 
  'xmp.photoshop:Category', 
  'xmp.photoshop:City', 
  'xmp.photoshop:ColorMode', 
  'xmp.photoshop:Country', 
  'xmp.photoshop:Credit', 
  'xmp.photoshop:DateCreated', 
  'xmp.photoshop:Headline', 
  'xmp.photoshop:ICCProfile', 
  'xmp.photoshop:Instructions', 
  'xmp.photoshop:Source', 
  'xmp.photoshop:State', 
  'xmp.photoshop:SupplementalCategories', 
  'xmp.photoshop:TransmissionReference', 
  'xmp.photoshop:Urgency', 
  'xmp.rdf:about', 
  'xmp.tiff:Artist', 
  'xmp.tiff:BitsPerSample', 
  'xmp.tiff:Compression', 
  'xmp.tiff:Copyright', 
  'xmp.tiff:DateTime', 
  'xmp.tiff:ImageDescription', 
  'xmp.tiff:ImageLength', 
  'xmp.tiff:ImageWidth', 
  'xmp.tiff:Make', 
  'xmp.tiff:Model', 
  'xmp.tiff:Orientation', 
  'xmp.tiff:PhotometricInterpretation', 
  'xmp.tiff:PlanarConfiguration', 
  'xmp.tiff:PrimaryChromaticities', 
  'xmp.tiff:ReferenceBlackWhite', 
  'xmp.tiff:ResolutionUnit', 
  'xmp.tiff:SamplesPerPixel', 
  'xmp.tiff:Software', 
  'xmp.tiff:TransferFunction', 
  'xmp.tiff:WhitePoint', 
  'xmp.tiff:XResolution', 
  'xmp.tiff:YCbCrCoefficients', 
  'xmp.tiff:YCbCrPositioning', 
  'xmp.tiff:YCbCrSubSampling', 
  'xmp.tiff:YResolution', 
  'xmp.x:xmptk', 
  'xmp.xmlns:Iptc4xmpCore', 
  'xmp.xmlns:aux', 
  'xmp.xmlns:crs', 
  'xmp.xmlns:dc', 
  'xmp.xmlns:digiKam', 
  'xmp.xmlns:exif', 
  'xmp.xmlns:lr', 
  'xmp.xmlns:photoshop', 
  'xmp.xmlns:rdf', 
  'xmp.xmlns:tiff', 
  'xmp.xmlns:x', 
  'xmp.xmlns:xmp', 
  'xmp.xmlns:xmpBJ', 
  'xmp.xmlns:xmpDM', 
  'xmp.xmlns:xmpMM', 
  'xmp.xmlns:xmpNote', 
  'xmp.xmlns:xmpRights', 
  'xmp.xmlns:xmpTPg', 
  'xmp.xmp:Advisory', 
  'xmp.xmp:BaseURL', 
  'xmp.xmp:CreateDate', 
  'xmp.xmp:CreatorTool', 
  'xmp.xmp:Identifier', 
  'xmp.xmp:Label', 
  'xmp.xmp:MetadataDate', 
  'xmp.xmp:ModifyDate', 
  'xmp.xmp:Nickname', 
  'xmp.xmp:Rating', 
  'xmp.xmp:Thumbnails', 
  'xmp.xmpBJ:JobRef', 
  'xmp.xmpMM:DerivedFrom', 
  'xmp.xmpMM:DocumentID', 
  'xmp.xmpMM:History', 
  'xmp.xmpMM:InstanceID', 
  'xmp.xmpMM:LastURL', 
  'xmp.xmpMM:ManageTo', 
  'xmp.xmpMM:ManageUI', 
  'xmp.xmpMM:ManagedFrom', 
  'xmp.xmpMM:Manager', 
  'xmp.xmpMM:ManagerVariant', 
  'xmp.xmpMM:RenditionClass', 
  'xmp.xmpMM:RenditionParams', 
  'xmp.xmpMM:VersionID', 
  'xmp.xmpMM:Versions', 
  'xmp.xmpNote:HasExtendedXMP', 
  'xmp.xmpRights:Certificate', 
  'xmp.xmpRights:Marked', 
  'xmp.xmpRights:Owner', 
  'xmp.xmpRights:UsageTerms', 
  'xmp.xmpRights:WebStatement', 
  'xmp.xmpTPg:Colorants', 
  'xmp.xmpTPg:Fonts', 
  'xmp.xmpTPg:MaxPageSize', 
  'xmp.xmpTPg:NPages', 
  'xmp.xmpTPg:PlateNames'
);
?>

3) Désactiver le plugin (pas besoin de le désinstaller)

4) Rescanner les images en remplaçant le référentiel actuel.

Hors ligne

  •  » Plugins
  •  » [Résolu] [AMetadata] Permettre de synchroniser uniquement les données GPS ?

Pied de page des forums

Propulsé par FluxBB

github twitter newsletter Faire un don Piwigo.org © 2002-2024 · Contact