Can anyone recommend a tool to manage photos at the cmdline? I just want to move photos into dirs based on their metadata (YYYY/DD), occasionally fix up metadata (adjust dates), rename photo filenames to match a template and/or query my photos for certain things. It doesn’t need to be a gallery or image touch-up tool, I have other things for that.

I’m aware of exiftool and ImageMagick, perhaps they can do the job but they seem quite low level, really need to build scripts around them - I’d like something that operates at a slightly higher level so I don’t have to do too much scripting.

A quick search turned up chee (GPLv3) which can:

  • search photos using a simple query language
  • manage named queries (called collections)
  • copy/symlink images into a custom folder structure

…but it’s not had an update in a few years (maybe it’s feature complete tho!) Any other suggestions? Thanks.

    • @IanTwentyOP
      link
      13 hours ago

      Thank you for this. I think this has some of the operations I need, I will dig into the code.

    • @IanTwentyOP
      link
      13 hours ago

      That looks a very useful tool, thanks. I think it could be just the thing for bulk renaming photos to standard names.

  • @[email protected]
    link
    fedilink
    7
    edit-2
    1 day ago

    Probably not what you want to hear, but I think exiftool + bash script really is the way to go. A few years ago I had a similar need and searched for hours online… I ended up hacking together a “good enough” bash script that reads all the dates of my pictures and does some stuff. It took 30 mins of reading some basic bash scripting basics. Way less time than searching for a tool that probably doesnt exist.

    In 2024, you can probably just ask chatgpt to write a quick and dirty bash script for you and it might require another 10mins of debugging/begging chatgpt to fix its mistakes

    • @IanTwentyOP
      link
      22 hours ago

      I think you’ve hit the nail on the head so to speak…it’s just too small/custom a thing for anyone to have built a dedicated tool it seems. In the end I am looking at using my file manager (nautlius) to automatically run a custom exiftool/bash script on chosen files so I can just click and rename/fix metadata etc as I browse through the files. Probably good enough for now.

    • @[email protected]
      link
      fedilink
      419 hours ago

      Add in manual btrfs snapshots prior to usage too, having a “undo” on thousands of photo alternations is optimal if the script eats your photos.

      • @IanTwentyOP
        link
        22 hours ago

        💯 ! I been considering git-annex too which might let me treat all the photos like any git repo without the bloat.

  • @NeoNachtwaechter
    link
    51 day ago

    There’s a lib/tool called exiftool iirc. It can be used from the commandline.