Skip to content

Commit

Permalink
Make the README useful
Browse files Browse the repository at this point in the history
  • Loading branch information
mattpopovich committed Feb 25, 2024
1 parent 9dd2125 commit c82d11f
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 2 deletions.
24 changes: 23 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,24 @@
# AdobeDNGConverterScripts
Scripts that utilize Adobe DNG Converter
A collection of scripts I made that utilize Adobe Digital Negative (DNG) Converter's command line interface (CLI).
* [compare_AdobeDNGConverter_arguments.sh](compare_AdobeDNGConverter_arguments.sh)
* Runs the *Adobe DNG Converter* from the CLI with a bunch of different arguments to compare their runtime and size of the converted files
* [reset.sh](reset.sh)
* A script used while testing [organizeGoProDNG.sh](organizeGoProDNG.sh). This script "resets" the folder to what it normally looks like coming fresh off of a GoPro.
* [organizeGoProDNG.sh](organizeGoProDNG.sh)
* A script to convert a folder coming fresh off of a GoPro from
* `GOPR0000.GPR`
* `GOPR0000.JPG`
* `GOPR0001.GPR`
* `GOPR0001.JPG`
* to
* `GPR/`
* `GOPR0000.GPR`
* `GOPR0001.GPR`
* `JPG/`
* `GOPR0000.JPG`
* `GOPR0001.JPG`
* `DNG/`
* `GOPR0000.dng`
* `GOPR0001.dng`

TODO: Add an `original/` folder with two sample images.
File renamed without changes.
2 changes: 1 addition & 1 deletion organizeGoProDNG.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ mv *.GPR GPR
# Create a DNG folder
mkdir DNG
# Populate the DNG folder via Adobe DNG Converter
/Applications/Adobe\ DNG\ Converter.app/Contents/MacOS/Adobe\ DNG\ Converter -fl -d DNG GPR/*
/Applications/Adobe\ DNG\ Converter.app/Contents/MacOS/Adobe\ DNG\ Converter -fl -mp -d DNG GPR/*

ls -l DNG
shasum -a 256 DNG/GOPR0924.dng
Expand Down
1 change: 1 addition & 0 deletions reset.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
rm -f *.GPR
rm -f *.gpr
rm -f *.JPG

rm -rf GPR
Expand Down

0 comments on commit c82d11f

Please sign in to comment.