We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3ec7057 + 94a216e commit ca0beb1Copy full SHA for ca0beb1
epstein_video_analyzer.py
@@ -62,7 +62,9 @@ def check_dependencies(self):
62
63
for tool, description in required_tools.items():
64
try:
65
- result = subprocess.run([tool, '-version'],
+ # exiftool uses -ver instead of -version
66
+ version_flag = '-ver' if tool == 'exiftool' else '-version'
67
+ result = subprocess.run([tool, version_flag],
68
capture_output=True, text=True, timeout=10)
69
if result.returncode == 0:
70
print(f" ✅ {tool}: Available")
@@ -770,4 +772,3 @@ def main():
770
772
771
773
if __name__ == "__main__":
774
sys.exit(main())
-
0 commit comments