I'm trying to add to the already "Extract Metadata" script that reads and outputs to csv which works well.
I have been able to add new items to the selection etc, but when I want to extract specific data I'm unsure what "keywords" are supposed to be used. Is there an api.chm file that indicates this or what?
For example:
Code: Select all
if(win.grp20.cb18.value){
var gpsAlt = md.read("http://ns.adobe.com/exif/1.0/" ,"exif:GPSAltitude");
if(gpsAlt == undefined) gpsAlt = '';
Line += csvtab + eval(gpsAlt);
}
Code: Select all
md.read("http://ns.adobe.com/exif/1.0/" ,"exif:GPSAltitude");
Code: Select all
if(win.grp10.cb14.value){
var gpsImg = md.read("http://ns.adobe.com/photoshop/1.0/","exif:GPSImgDirection");
if(gpsImg == undefined) gpsImg = '';
Line += csvtab + eval(gpsImg);
}
I'm assuming it's this reference line
Code: Select all
md.read("http://ns.adobe.com/photoshop/1.0/","exif:GPSImgDirection")
Code: Select all
"exif:GPSImgDirection"
Cheers