Worst topic but can't really say much more.
Thing is, i am trying to run a certain command from cmd, if i do this normally in windows, it's flawless, in C# it doesn't work, even though it's the exact same string.
Here is how i do it:
Process cwebp = new Process();
cwebp.StartInfo.FileName=("cmd.exe");
cwebp.StartInfo.Arguments = Settings.EncoderSettings[0];
cwebp.Start();
And well arguments is pretty much anything, for example:
opusenc --bitrate 100 input.wav output.opus
Is there any fundamental issue here? Been searching a lot and can't find any information, everything says (use Arguments), and i do, and it doesn't work as expected.
cmd opusenc --bitrate 100 input.wav output.opusvscmd /C opusenc --bitrate 100 input.wav output.opus. For more info, see the parameters for CMD.exe.