topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Wednesday April 17, 2024, 7:06 pm
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Author Topic: MiniCap: add EXIF meta data  (Read 4623 times)

AbteriX

  • Charter Honorary Member
  • Joined in 2005
  • ***
  • Posts: 1,149
    • View Profile
    • Donate to Member
MiniCap: add EXIF meta data
« on: August 14, 2014, 01:24 AM »
Sorry, me again.

While testing, I saw that MiniCap didn't write meta data into the file.

So I want to ask if that would be an improvement idea?
I think I am mostly interested in
- DateTaken time stamp
- the title line of the captured app.
- the app image name
- an comment.
For the middle two there may be no equivalent exif field, but we could abuse one?


If this is to much for you, I think we can do that by utilizing Phil Harveys' ExifTool (or such) inside an batch

:loop
start "" MiniCap.exe -save %myfilename% -captureappbyname %AppnameToCapture% -exit -compress 1 -nofocus
wait 500
start "" exiftool %myfilename%
GoTo loop



 

mouser

  • First Author
  • Administrator
  • Joined in 2005
  • *****
  • Posts: 40,900
    • View Profile
    • Mouser's Software Zone on DonationCoder.com
    • Read more about this member.
    • Donate to Member
Re: MiniCap: add EXIF meta data
« Reply #1 on: August 14, 2014, 10:51 AM »
I can add an option to set the exif comment from minicap.

mouser

  • First Author
  • Administrator
  • Joined in 2005
  • *****
  • Posts: 40,900
    • View Profile
    • Mouser's Software Zone on DonationCoder.com
    • Read more about this member.
    • Donate to Member
Re: MiniCap: add EXIF meta data
« Reply #2 on: August 17, 2014, 07:23 AM »
Added, please download latest minicap BETA:

New commandline option:

-comment "comment string here"
embed (exif) comment in saved file (works on png, jpg, tiff, gif, but not .bmp)

AbteriX

  • Charter Honorary Member
  • Joined in 2005
  • ***
  • Posts: 1,149
    • View Profile
    • Donate to Member
Re: MiniCap: add EXIF meta data
« Reply #3 on: August 19, 2014, 01:51 AM »
Thank you J. for the update.

Works, fine.

I think you should mention that not all programs will detect the meta data comment for PNG and GIF, but f.ex. Phil Harveys' ExifTool will do.

So I was trapped first as I always save as PNG, and missed the comment, as my tools doesn't show them,
because normally PNG and GIF doesn't have such meta data on default and so the tools are not build to search for comment in that file types.

One can still see the comment by utilizing Notepad and searching "EXtDescription" in PNG and jump to EOF for GIFs.
Still useful if you really need to know the comment.

- - -

And there are two issues I want to bring to your attention (( Just saying, perhaps you overlooked that?)):

- command line parameter -nofocus is case sensitive. E.g. -noFocus didn't work.

- the details of the MiniCap.exe tells Version it is v1.20.02 (instead of v1.31.01)

Found another one: "shot_$uniquenum$.png" on command line have to be put inside of quotes,
just un-quoted shot_$uniquenum$.png didn't work. (but that one can guess from reading the help)



Thank you.