1
0
mirror of synced 2024-11-14 16:57:34 +01:00
TaikoSoundEditor/WAV.cs

41 lines
1.3 KiB
C#
Raw Normal View History

2023-07-17 10:20:00 +02:00
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TaikoSoundEditor
{
internal static class WAV
{
2023-07-17 16:47:56 +02:00
public static void ConvertToWav(string sourcePath, string destPath, int seconds_before)
2023-07-17 10:20:00 +02:00
{
sourcePath = Path.GetFullPath(sourcePath);
destPath = Path.GetFullPath(destPath);
var p = new Process();
p.StartInfo.FileName = Path.GetFullPath(@"Tools\sox\sox.exe");
p.StartInfo.ArgumentList.Add(sourcePath);
p.StartInfo.ArgumentList.Add(destPath);
2023-07-17 16:47:56 +02:00
p.StartInfo.ArgumentList.Add("pad");
2023-07-17 16:26:25 +02:00
p.StartInfo.ArgumentList.Add(seconds_before.ToString());
2023-07-17 16:47:56 +02:00
p.StartInfo.ArgumentList.Add("0");
2023-07-17 10:20:00 +02:00
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardError = true;
p.StartInfo.RedirectStandardOutput = true;
p.Start();
p.WaitForExit();
int exitCode = p.ExitCode;
string stdout = p.StandardOutput.ReadToEnd();
string stderr = p.StandardError.ReadToEnd();
if (exitCode != 0)
throw new Exception($"Process sox failed with exit code {exitCode}:\n" + stderr);
}
}
}