darkmoon3d
07-07-2009, 10:06 PM
I'm trying to get doscommand to work with processing image file with exiftool (http://www.sno.phy.queensu.ca/~phil/exiftool/) to get exif results. Have tested at dos command line and works great but can't seem to get it to work with Max. Am using 3ds9sp2.
EXIF_ImageFile = "D:\new folder\exif\ExifTool\IMG_0373.JPG"
EXIF_ExifFilename = "D:\new folder\exif\ExifTool\Exiftool.exe"
DOSCommand EXIF_ExifFilename -h + EXIF_ImageFile > out.txt
Have tried different formating and having no luck:
DOSCommand EXIF_ExifFilename -h EXIF_ImageFile > out.txt
-- No ""u-"" function for undefined
DOSCommand EXIF_ExifFilename + " -h" + EXIF_ImageFile + " > out.txt"
-- Incompatible types: 1, and " -h "
DOSCommand "EXIF_ExifFilename -h EXIF_ImageFile > out.txt"
1
creates out.txt file but empty so didnt' process correctly
shellLaunch "EXIF_ExifFilename -h EXIF_ImageFile > out.txt"
-- Argument count error: ShellLaunch wanted 2, got 1
EXIF_ImageFile = "D:\new folder\exif\ExifTool\IMG_0373.JPG"
EXIF_ExifFilename = "D:\new folder\exif\ExifTool\Exiftool.exe"
DOSCommand EXIF_ExifFilename -h + EXIF_ImageFile > out.txt
Have tried different formating and having no luck:
DOSCommand EXIF_ExifFilename -h EXIF_ImageFile > out.txt
-- No ""u-"" function for undefined
DOSCommand EXIF_ExifFilename + " -h" + EXIF_ImageFile + " > out.txt"
-- Incompatible types: 1, and " -h "
DOSCommand "EXIF_ExifFilename -h EXIF_ImageFile > out.txt"
1
creates out.txt file but empty so didnt' process correctly
shellLaunch "EXIF_ExifFilename -h EXIF_ImageFile > out.txt"
-- Argument count error: ShellLaunch wanted 2, got 1
