From ea91cfb3684d24099f84f8236a37d1fe0f02d643 Mon Sep 17 00:00:00 2001 From: Robert Date: Wed, 28 Apr 2021 22:26:10 +0200 Subject: [PATCH] added channel selector --- src/main.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index 45ce2df..2a37684 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -15,6 +15,7 @@ struct Settings { bool quiet; float splitInterval; double minFreq, maxFreq; + unsigned int analyzeChannel; }; Settings Parse(int argc, char** argv); @@ -39,6 +40,12 @@ int main(int argc, char** argv) int numChannels = audioFile.getNumChannels(); nlohmann::json output; + int c = setts.analyzeChannel; + if (c == 0) + c = 1; + else + numChannels = c; + for (int c = 1; c <= numChannels; c++) { PRINTER(setts, "\rAnalyzing " << filename << "... Channel " << c << "/" << numChannels << " 0% "); @@ -115,6 +122,7 @@ Settings Parse(int argc, char** argv) ("q,quiet", "Suppress text output", cxxopts::value()->default_value("false")) ("i,interval", "Splits audio file into intervals of length i milliseconds and transforms them individually (0 to not split file)", cxxopts::value()) ("f,frequency", "Defines the frequency range of the output spectrum (Default: all the frequencies)", cxxopts::value>()) + ("m,mono", "Analyze only the given channel", cxxopts::value()->default_value("0")) ("files", "Files to fourier transform", cxxopts::value>()) ("h,help", "Print usage") ; @@ -148,6 +156,7 @@ Settings Parse(int argc, char** argv) setts.files = result["files"].as>(); setts.quiet = (result.count("quiet") ? result["quiet"].as() : false); setts.splitInterval = (result.count("interval") ? result["interval"].as() : 0.0f); + setts.analyzeChannel = (result.count("mono") ? result["mono"].as() : 0); if (setts.maxFreq <= setts.minFreq && (setts.maxFreq != 0))