Add/Modify the meta data in PDF file additional Metadata Properties

Hi all,

Is it possible to add and modify the metadata in the PDF file(Acrobat DC)

Additional Metadata > Advanced > XMP Core Properties > to modify or add any property and value in the PDF using applescript?


set theFile to (choose file)
tell application id "com.adobe.Acrobat.Pro" -- Adobe Acrobat.app
	open theFile
	set info active doc key "Author" value "Vijay" -- change description to suit
	close active doc saving yes
end tell

The above code update the meta data in the Description tab of Acrobat

Hi All,

Is it possible to add and modify the XMP meta data in PDF using shell script with exif tool?