How do I get the stats of a file? #24
Answered
by
igece
hubuhubugit
asked this question in
Q&A
-
|
Like the stats result when running the command: I don't need to create new or modify files, I only want to get the "Volume adjustment" data from the stats. |
Beta Was this translation helpful? Give feedback.
Answered by
igece
Sep 16, 2020
Replies: 1 comment
-
|
The using (var sox = new Sox("sox.exe"))
{
sox.CustomEffects = "stat";
sox.Process("filename");
} |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
igece
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The
stateffect is not currently implemented in SoxSharp. However, the library provides a way to callsoxwith these effects.The code to perform your task is something like this: