Skip to content

Commit dafcc42

Browse files
committed
unpackori: Make the help output a bit more useful
1 parent 5e6fd72 commit dafcc42

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

unpackori.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -116,10 +116,10 @@ def parse_header(headerdata, shotnum):
116116
ap.add_argument('-i', '--input', required=True,
117117
help='path to input file')
118118

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

124124
args = vars(ap.parse_args())
125125
bin_file = args['input']

0 commit comments

Comments
 (0)