pyexiftool icon indicating copy to clipboard operation
pyexiftool copied to clipboard

PyExifTool (active PyPI project) - A Python library to communicate with an instance of Phil Harvey's ExifTool command-line application. Runs one process with special -stay_open flag, and pipes data t...

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

I'm using your code really well, but I've noticed one odd thing. If the name of the file contains certain Korean characters, I get a decoding error and the metadata...

bug

Hi, I've been playing with the module and so far it's proven to be really useful, thanks for your work. I'm renaming some files based on their date of creation....

enhancement
question

I'm hoping to use this in Linux, so hopefully not an issue but makes dev in two different environments hard. Most of the time it just hangs at program exit,...

question

Hi, if have written a small program to test some functionality. I can't seem to figure out how to pass a variable as an argument for .execute(). this is my...

question

The select loop from exiftool does not check for EOF, causing some expect failure to cause pyexiftool to hang. This PR doesn't address the Window case, as I can't test...

Hi, As I remember, you added a `_encoding` agr to support non-unicodes. Today, I find that a tag with “utf-8" but wide-character value is unsupported: `UnicodeDecodeError: 'gbk' codec can't decode...

question

Currently calling execute_json sets only `-j` as ExifTool parameter - but it does not set the `-struct` parameter. That's a dangerous for metadata properties with structured values and multiple values....

documentation
enhancement

Fixes https://github.com/sylikc/pyexiftool/issues/63 AFAIK

question

Trying to debug a pyexiftool issue on Windows, to which I don't have access, I'm basically trying to run this, in [tobix/pywine](https://hub.docker.com/r/tobix/pywine/): ```python def test_exiftool_works_on_all_images(): with ExifToolHelper(executable="./exiftool.exe") as et: for...

question

The following command on command line: ``` exiftool -comment="post contents: new line" images-saved/temp-file.jpg ``` gives the following output: ``` 1 image files updated ``` However, when I try to use...

invalid