Should I be able to do this with Applescript?
Posted: Wed Dec 22, 2010 5:52 pm
As part of my conversion from Windows to Mac, I have some export actions in LR2/Mogrify that I need to convert.
Basically, I have some batch files that call ExifTool to extract Exif data to a file.
\Export Actions\dive exiftool.bat
c:\atj.com.au\atj.net.au\exiftool.bat
Should I be able to do the above (fairly easily) with Applescript? Is there a better way?
Basically, I have some batch files that call ExifTool to extract Exif data to a file.
\Export Actions\dive exiftool.bat
- Code: Select all
for %%A in (%*) do call "C:\atj.com.au\atj.net.au\exiftool" %%A
exit
c:\atj.com.au\atj.net.au\exiftool.bat
- Code: Select all
del "%~dp1\exif\%~n1.exif"
c:\programs\exiftool-7.06\exiftool.exe -d "%%d/%%m/%%Y %%H:%%M:%%S" -@ "C:\atj.com.au\exiftool.arg" -w %%d\exif\%%f.exif "%~dpn1.jpg"
Should I be able to do the above (fairly easily) with Applescript? Is there a better way?