pirafrank / rust_exif_renamer

Rename photos in given dir to their EXIF DateTimeOriginal. New filename will be in YYYYMMDD_hh24mmss format.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Rust EXIF Renamer

A dummy file renamer renaming JPEG files based on DateTimeOriginal in their EXIF metadata. Written in Rust.

How it works

It expects a single argument, the directory containing the JPEG files to rename.

Then it looks for the DateTimeOriginal field in the EXIF data, which typically stores the date and time the photo was taken.

If it finds that field, it parses the date and time of it, and renames the file accordingly using the YYYYMMDD_hh24mmss pattern.

If anything fails, it prints an error message and continues with the next file.

Build

cargo build --release

Install

cargo install --path .

Usage

exif-renamer somefolder

About

Rename photos in given dir to their EXIF DateTimeOriginal. New filename will be in YYYYMMDD_hh24mmss format.


Languages

Language:Rust 100.0%