mirror of https://gitlab.com/bashrc2/epicyon
Check for command failure
parent
4b645ed1b9
commit
d69bded0ae
5
media.py
5
media.py
|
@ -96,7 +96,7 @@ def _spoofMetaData(baseDir: str, nickname: str, domain: str,
|
|||
camMake, camModel, camSerialNumber) = \
|
||||
spoofGeolocation(baseDir, spoofCity, currTimeAdjusted,
|
||||
decoySeed, None, None)
|
||||
os.system('exiftool -artist="' + nickname + '" ' +
|
||||
if os.system('exiftool -artist="' + nickname + '" ' +
|
||||
'-Make="' + camMake + '" ' +
|
||||
'-Model="' + camModel + '" ' +
|
||||
'-Comment="' + str(camSerialNumber) + '" ' +
|
||||
|
@ -109,7 +109,8 @@ def _spoofMetaData(baseDir: str, nickname: str, domain: str,
|
|||
'-GPSLatitudeRef=' + latitudeRef + ' ' +
|
||||
'-GPSLatitude=' + str(latitude) + ' ' +
|
||||
'-Comment="" ' +
|
||||
outputFilename) # nosec
|
||||
outputFilename) != 0: # nosec
|
||||
print('ERROR: exiftool failed to run')
|
||||
else:
|
||||
print('ERROR: exiftool is not installed')
|
||||
return
|
||||
|
|
Loading…
Reference in New Issue