Skip to content

Commit

Permalink
fix bug in default output format
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinCupak committed Aug 5, 2024
1 parent 53f4ad6 commit eb50074
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/dat2wav.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def parseArgs():
parser.add_argument('--filename', '-f', required=True,
help='The name of the raw .DAT file to process.')
parser.add_argument('--output', '-o', type=str,
choices=['wav', 'flac'], default="WAV",
choices=['wav', 'flac'], default="wav",
help='Output audio file format (wav, flac)')
parser.add_argument('--calibrate', '-c', required=False,
help='Calibrate, using calibration file')
Expand Down

0 comments on commit eb50074

Please sign in to comment.