Skip to content

Commit

Permalink
unpackori: Make the help output a bit more useful
Browse files Browse the repository at this point in the history
  • Loading branch information
Entropy512 committed Apr 14, 2024
1 parent 5e6fd72 commit dafcc42
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions unpackori.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,10 +116,10 @@ def parse_header(headerdata, shotnum):
ap.add_argument('-i', '--input', required=True,
help='path to input file')

ap.add_argument('--dateheader', action='store_true')
ap.add_argument('-d', '--dng', action='store_true')
ap.add_argument('-t', '--tiff', action='store_true')
ap.add_argument('-p', '--save_preview', action='store_true')
ap.add_argument('--dateheader', action='store_true', help='Rename header file with ORI date to help with reverse engineering')
ap.add_argument('-d', '--dng', action='store_true', help='Output DNGs. Will disable JPEG and raw binary output. May be combined with -t')
ap.add_argument('-t', '--tiff', action='store_true', help='Output TIFFs. Will disable JPEG and raw binary output. May be combined with -d')
ap.add_argument('-p', '--save_preview', action='store_true', help='Save preview images when extracting JPEGs')

args = vars(ap.parse_args())
bin_file = args['input']
Expand Down

0 comments on commit dafcc42

Please sign in to comment.