An open API service indexing awesome lists of open source software.

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

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.