pyexiftool icon indicating copy to clipboard operation
pyexiftool copied to clipboard

a Python library to communicate with an instance of Phil Harvey's excellent ExifTool command-line application.

Results 31 pyexiftool issues
Sort by recently updated
recently updated
newest added

Should point to https://smarnach.github.io/pyexiftool/

While this is unlikely to be merged, this PR provides some visibility to an active fork that has merged many other PR from here.

I want to write yaw pitch roll of the image ,but don't know how to do,the following can't work ``` import exiftool img_name = 'sam.jpg' with exiftool.ExifTool() as et: et.execute("-Yaw=21.123\n-Pitch=10.101\n-Roll=-7.252",...

the url for the documentation should read https://smarnach.github.io/pyexiftool/ as opposed to https://smarnach.github.com/pyexiftool/ thank you for creating such a good tool

Hello, I'm using the following code to embed metadata to JPEGs: ``` def embed_metadata(self): with ExifTool(executable_=os.environ["EXIFTOOL"]) as et: for param in self.__metadata: param = param.encode(encoding="utf-8") dest = os.path.join(os.environ["JPG"], self.__jpg).encode( encoding="utf-8"...

It appears that something is causing pyxexiftool to ignore the kill signal. I would like to be to terminate the process with taskkill or tskill. tskill PID has no effect

Is it possible to retrieve exiftools metadata from a BytesIO object? I am trying the following, with error below. ``` img = Image.open('bus.jpg') buf = io.BytesIO() img.save(buf, 'jpeg') imgbytes =...

i encountered the following error : ``` Traceback (most recent call last): File "yeah.py", line 21, in with exiftool.ExifTool("/usr/local/lib/python2.7/dist-packages/exiftool.py") as et: File "/usr/local/lib/python2.7/dist-packages/exiftool.py", line 191, in __enter__ self.start() File "/usr/local/lib/python2.7/dist-packages/exiftool.py",...

For some tags, disabling print conversion (as was the default before) would not make much sense. For example, if print conversion is deactivated, the value of the Composite:LensID tag could...

This means you still cannot see image/video metadata from your android device via Pydroid 3 and pyexiftool. I tried from my computer named Untitled Python Project which it runs Linux...