How to Change image captured date in python?

前端 未结 4 1383
生来不讨喜
生来不讨喜 2021-02-13 19:52

I have over 500 images (png /jpg) having wrong captured date (Date taken) because of wrong camera date settings. I moved photos to mobile and mobile gallery sorts photos on the

4条回答
  •  情话喂你
    2021-02-13 20:07

    No real need to write Python, you can do it in one line in the Terminal using jhead. For example, adjust all EXIF times forward by 1 hour

    jhead -ta+1:00 *.jpg
    

    Make a COPY of your files and test it out on that first!

    Download from here.

提交回复
热议问题