From d69bded0ae21ef89c9faaf22f61b4bf42ce7adc0 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Fri, 13 Aug 2021 20:56:42 +0100 Subject: [PATCH] Check for command failure --- media.py | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/media.py b/media.py index c74fd7459..3fad2c4fb 100644 --- a/media.py +++ b/media.py @@ -96,20 +96,21 @@ def _spoofMetaData(baseDir: str, nickname: str, domain: str, camMake, camModel, camSerialNumber) = \ spoofGeolocation(baseDir, spoofCity, currTimeAdjusted, decoySeed, None, None) - os.system('exiftool -artist="' + nickname + '" ' + - '-Make="' + camMake + '" ' + - '-Model="' + camModel + '" ' + - '-Comment="' + str(camSerialNumber) + '" ' + - '-DateTimeOriginal="' + published + '" ' + - '-FileModifyDate="' + published + '" ' + - '-CreateDate="' + published + '" ' + - '-GPSLongitudeRef=' + longitudeRef + ' ' + - '-GPSAltitude=0 ' + - '-GPSLongitude=' + str(longitude) + ' ' + - '-GPSLatitudeRef=' + latitudeRef + ' ' + - '-GPSLatitude=' + str(latitude) + ' ' + - '-Comment="" ' + - outputFilename) # nosec + if os.system('exiftool -artist="' + nickname + '" ' + + '-Make="' + camMake + '" ' + + '-Model="' + camModel + '" ' + + '-Comment="' + str(camSerialNumber) + '" ' + + '-DateTimeOriginal="' + published + '" ' + + '-FileModifyDate="' + published + '" ' + + '-CreateDate="' + published + '" ' + + '-GPSLongitudeRef=' + longitudeRef + ' ' + + '-GPSAltitude=0 ' + + '-GPSLongitude=' + str(longitude) + ' ' + + '-GPSLatitudeRef=' + latitudeRef + ' ' + + '-GPSLatitude=' + str(latitude) + ' ' + + '-Comment="" ' + + outputFilename) != 0: # nosec + print('ERROR: exiftool failed to run') else: print('ERROR: exiftool is not installed') return