Skip to content

Commit

Permalink
updated to convert to 16 bit
Browse files Browse the repository at this point in the history
  • Loading branch information
SH4KUR committed Jan 15, 2024
1 parent acacf1a commit 2f3d91a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AudioBitDepthConvert/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ private static void ExecuteSoxUtility(string filePath, string convertedFilePath)
UseShellExecute = false,

FileName = "sox",
Arguments = $"\"{filePath}\" -b 24 \"{convertedFilePath}\""
Arguments = $"\"{filePath}\" -b 16 \"{convertedFilePath}\""
};

var process = Process.Start(startInfo) ?? throw new NullReferenceException("Process is null");
Expand Down

0 comments on commit 2f3d91a

Please sign in to comment.