exif

Batch copy metadata from one file to another (EXIFTOOL)

旧城冷巷雨未停 提交于 2020-02-25 04:35:08
问题 Im currently using tags such as exiftool -FileModifyDate(<)datetimeoriginal, etc. in terminal/cmd... Im switching from icloud and the dates in the metadata are exif (meaning finder and windows explorer just see the date they were downloaded).. It's working but for any sloMo videos that are M4V, they dont change.. I have the originals which do have the right dates and was wondering if there is a way to match file names (123.mp4 = 123.m4v) and copy the metadata over... But I also want to do it

R write EXIF data to JPEG file

馋奶兔 提交于 2020-02-24 12:09:49
问题 For R I found an opportunity to only read the EXIF data. Is there any possibility in R to write EXIF data to JPEG file? 回答1: Thanks to all who responded. As a result, I obtained the following solution. Install ExifTool, I use Ubuntu comand: sudo apt install libimage-exiftool-perl Then in my R code, to add GPS coordinates to image I use: exiftool_cmd <- paste("exiftool -GPSLongitudeRef=E -GPSLongitude=",latlon_exif[i,11]," -GPSLatitudeRef=N -GPSLatitude=",latlon_exif[i,10]," ","./nodejpg/"

R write EXIF data to JPEG file

放肆的年华 提交于 2020-02-24 12:09:22
问题 For R I found an opportunity to only read the EXIF data. Is there any possibility in R to write EXIF data to JPEG file? 回答1: Thanks to all who responded. As a result, I obtained the following solution. Install ExifTool, I use Ubuntu comand: sudo apt install libimage-exiftool-perl Then in my R code, to add GPS coordinates to image I use: exiftool_cmd <- paste("exiftool -GPSLongitudeRef=E -GPSLongitude=",latlon_exif[i,11]," -GPSLatitudeRef=N -GPSLatitude=",latlon_exif[i,10]," ","./nodejpg/"

R write EXIF data to JPEG file

送分小仙女□ 提交于 2020-02-24 12:09:03
问题 For R I found an opportunity to only read the EXIF data. Is there any possibility in R to write EXIF data to JPEG file? 回答1: Thanks to all who responded. As a result, I obtained the following solution. Install ExifTool, I use Ubuntu comand: sudo apt install libimage-exiftool-perl Then in my R code, to add GPS coordinates to image I use: exiftool_cmd <- paste("exiftool -GPSLongitudeRef=E -GPSLongitude=",latlon_exif[i,11]," -GPSLatitudeRef=N -GPSLatitude=",latlon_exif[i,10]," ","./nodejpg/"

R write EXIF data to JPEG file

做~自己de王妃 提交于 2020-02-24 12:08:46
问题 For R I found an opportunity to only read the EXIF data. Is there any possibility in R to write EXIF data to JPEG file? 回答1: Thanks to all who responded. As a result, I obtained the following solution. Install ExifTool, I use Ubuntu comand: sudo apt install libimage-exiftool-perl Then in my R code, to add GPS coordinates to image I use: exiftool_cmd <- paste("exiftool -GPSLongitudeRef=E -GPSLongitude=",latlon_exif[i,11]," -GPSLatitudeRef=N -GPSLatitude=",latlon_exif[i,10]," ","./nodejpg/"

R write EXIF data to JPEG file

你离开我真会死。 提交于 2020-02-24 12:08:25
问题 For R I found an opportunity to only read the EXIF data. Is there any possibility in R to write EXIF data to JPEG file? 回答1: Thanks to all who responded. As a result, I obtained the following solution. Install ExifTool, I use Ubuntu comand: sudo apt install libimage-exiftool-perl Then in my R code, to add GPS coordinates to image I use: exiftool_cmd <- paste("exiftool -GPSLongitudeRef=E -GPSLongitude=",latlon_exif[i,11]," -GPSLatitudeRef=N -GPSLatitude=",latlon_exif[i,10]," ","./nodejpg/"

Python EXIF can't find date taken information, but exists when viewer through windows properties

心已入冬 提交于 2020-02-04 08:57:32
问题 I need to extract and organize photos by date taken. Windows 10, Python 2.7. I had been doing this from PIL import Image def get_date_taken(path): return Image.open(path)._getexif()[36867] following: Get date and time when photo was taken from EXIF data using PIL and that works great for some photos. Great. Now grabbing a different set of images, new camera, the properties look similar. but the dict is totally different Image.open(image)._getexif()[36867] Traceback (most recent call last):

What EXIF lib can I use from a Qt program (on embedded linux)?

半腔热情 提交于 2020-01-29 07:14:34
问题 Can anybody recommend a nice exif lib for tiff img that can be used with a Qt program? I would like to both read and write exif data. Please note that that I need a license that is compatible with a closed source program, so a lib that is using LGPL or a BSD style license would be really nice. My first plan was to use QExifImageHeader and QExifValue in Qt Extended, but then I noticed that Extended never got the LGPL licence and is on top of that it is discontinued.... The platform used is

What EXIF lib can I use from a Qt program (on embedded linux)?

微笑、不失礼 提交于 2020-01-29 07:14:14
问题 Can anybody recommend a nice exif lib for tiff img that can be used with a Qt program? I would like to both read and write exif data. Please note that that I need a license that is compatible with a closed source program, so a lib that is using LGPL or a BSD style license would be really nice. My first plan was to use QExifImageHeader and QExifValue in Qt Extended, but then I noticed that Extended never got the LGPL licence and is on top of that it is discontinued.... The platform used is

Android Create Custom Exif attributes for an image file

≡放荡痞女 提交于 2020-01-28 01:54:07
问题 currently i am trying to add custom exif tag/data to an image file that is in photo album. I am able to modify the existing tags defined in ExifInterface class However, i want to store custom data, such as user id of my app user, but it seems there is no way i can create a custom exif attribute the closest solution I found is here, but does not work, 回答1: Try saving the Exif data with the tag: "UserComment" Code: String mString = "Your message here"; ExifInterface exif = new ExifInterface