Skip to content
Discussion options

You must be logged in to vote

The stat effect is not currently implemented in SoxSharp. However, the library provides a way to call sox with these effects.
The code to perform your task is something like this:

using (var sox = new Sox("sox.exe"))
{
  sox.CustomEffects = "stat";
  sox.Process("filename");
}

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by igece
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #20 on May 29, 2021 22:55.