You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parser=argparse.ArgumentParser(description="Using a cuesheet, merges numerous bin files into a single bin file and produces a new cuesheet with corrected offsets. Works great with Redump. Supports all block modes, but only binary track types. Should work on any python3 platform.")
182
-
parser.add_argument('cuefile', help='path to source cuefile with multiple referenced bin tracks')
203
+
parser=argparse.ArgumentParser(description="Using a cuesheet, merges numerous bin files into a single bin file and produces a new cuesheet with corrected offsets. Works great with Redump. Supports all block modes, but only binary track types.")
204
+
parser.add_argument('cuefile', help='path to current cue file (bin files are expected in the same dir)')
183
205
parser.add_argument('basename', help='name (without extension) for your new bin/cue files')
184
-
parser.add_argument('--split', help='reverses operation, splitting merged files back to individual tracks', required=False, action="store_true")
206
+
parser.add_argument('--split', help='reverses operation, splitting merged files back to individual tracks', required=False, action='store_true')
185
207
parser.add_argument('-o', dest='outdir', required=False, default=False, help='output directory. defaults to the same directory as source cue')
208
+
parser.add_argument('-v', dest='verbose', action='store_true', help='print more verbose messages')
0 commit comments