MCPcopy Index your code
hub / github.com/WebODM/WebODM / extract_exif

Method extract_exif

app/tests/test_api_task.py:98–100  ·  view source on GitHub ↗
(file)

Source from the content-addressed store, hash-verified

96 # Check EXIF/XMP
97
98 def extract_exif(file):
99 return subprocess.run(['exiftool', file],
100 capture_output=True, text=True, check=True).stdout.strip()
101 def extract_xmp(file):
102 return subprocess.run(['exiftool', '-xmp', '-b', file],
103 capture_output=True, text=True, check=True).stdout.strip()

Callers

nothing calls this directly

Calls 1

runMethod · 0.80

Tested by

no test coverage detected