-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
13 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,26 @@ | ||
# Bulk image metadata setter | ||
# Bulk image Exif metadata | ||
|
||
Add date to image metadata when missing. | ||
|
||
Date parsed from file name. | ||
|
||
```bash | ||
Usage: set_date_image_metadata <PATH> | ||
Add date to image Exif metadata when missing | ||
|
||
Usage: set_date_image_metadata [OPTIONS] <PATH> | ||
|
||
Arguments: | ||
<PATH> The path to the file to read | ||
<PATH> The path to the base directory | ||
|
||
Options: | ||
-h, --help Print help | ||
-v, --verbose... Increase logging verbosity | ||
-q, --quiet... Decrease logging verbosity | ||
-h, --help Print help | ||
``` | ||
|
||
Display the last modification time of FILE | ||
Display Exif metadata | ||
|
||
``` | ||
date -r <filename> "+%d-%m-%Y %H:%M:%S" | ||
sudo apt install exif | ||
exif picture.jpg | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters