mirror of
https://github.com/flynx/ImageGrid.git
synced 2025-10-29 18:30:09 +00:00
10 lines
217 B
Bash
10 lines
217 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
# extract hi-res previews...
|
||
|
|
#exiftool -b -JpgFromRaw -w "%-:1d/hi-res (RAW)/%f.jpg" -ext NEF -r .
|
||
|
|
|
||
|
|
|
||
|
|
# extract metadata in JSON format...
|
||
|
|
exiftool -j -w "%-:1d/metadata/%f.json" -ext NEF -r . -progress
|
||
|
|
|