https://github.com/mattpopovich/adobedngconverterscripts
Scripts that utilize Adobe DNG Converter's CLI
https://github.com/mattpopovich/adobedngconverterscripts
adobe adobe-dng-converter dng dng-files dng-format gopro gpr macos shell
Last synced: 2 months ago
JSON representation
Scripts that utilize Adobe DNG Converter's CLI
- Host: GitHub
- URL: https://github.com/mattpopovich/adobedngconverterscripts
- Owner: mattpopovich
- Created: 2024-02-24T05:45:26.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-27T05:35:02.000Z (about 1 year ago)
- Last Synced: 2024-02-28T06:28:25.966Z (about 1 year ago)
- Topics: adobe, adobe-dng-converter, dng, dng-files, dng-format, gopro, gpr, macos, shell
- Language: Shell
- Homepage: https://mattpopovich.com/posts/how-to-use-adobe-dng-converter-from-the-command-line/
- Size: 14.5 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Adobe DNG Converter Scripts
A collection of scripts I made that utilize Adobe Digital Negative (DNG) Converter's command line interface (CLI). Read my [blog post](https://mattpopovich.com/posts/how-to-use-adobe-dng-converter-from-the-command-line/) for additional details.
* [reset.sh](reset.sh)
* A script used while testing the other scripts in this repo. This script "resets" the folder to what it normally looks like coming fresh off of a GoPro.
* Should be ran before running [compare_AdobeDNGConverter_arguments.sh](compare_AdobeDNGConverter_arguments.sh) or [organizeGoProDNG.sh](organizeGoProDNG.sh)
* [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
* Expects [reset.sh](reset.sh) to be ran first to clean things up
* [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`
* I much prefer my files to be in folders for organization sake!
* This performs a bulk conversion (in parallel) from `*.GPR` to `*.dng`
* This also makes importing into [Final Cut Pro (FCPX)](https://www.apple.com/final-cut-pro/) much easier as FCPX does not support `.GPR` files.
* **TIP**: You can rename this file to `*.command` so that you can double click it to run it in the current directory it is in on MacOS.