Anyone knows how to get the value of the highest volume level of a wav-file by using c++ (library libsndfile)? Thx!

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

you simply find the highest value among the absolute values of the samples in the sample buffer(s). this takes the general form:

t_sample PeakAmplitude(const t_sample* const buffer, const size_t& count) {
  t_sample highest(0);
  for (size_t idx(0); idx < count; ++idx) {
    highest = std::max(highest, abs(buffer[idx]));
  }
  return highest;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.