puronas

Results 9 comments of puronas

@evpobr Thank you very much for your help. This is my updated code that assembles the new BEXT chunk, replacing description and timestamp and copying over everything else. However I...

I'm back with an update: it has indeed been compiler error. Four months later I decided to get to the bottom of this. Moved the exact same code from Visual...

Hello and thank you for your reply. Here's the complete function: ``` void calculateLoudnessMetrics(const std::vector& audioSignal, int channels, int sampleRate, double& integratedLoudness, double& shortTermLoudness, double& peakLevel, double& dynamicRange) { //...

Since I am testing it with a mono signal it didn't make a difference to the readings, but yes - good point, thanks! Still getting True Peak as 2.12815e-314 and...

Thank you very much for your help Brian! - My audio samples are interleaved and in the range -1.0 to 1.0. - return value of ebur128_add_frames_float() is 0. - return...

@audionuma - Thank you very much! I have tried that. It changed something on some files, but not all. My original example still returned identical results. It is a clean...

Sndfile can feed the audio as float, double or short. I have tried loading the signal both as float and double. No change. Also, I have tried minimal-example.c, ran some...

Thanks jiixyj, that's great to hear. I have applied 20 * log10 to my true peak readings and they are now spot on. I am now exclusively testing with EBU...

> With that, do you mean the tests in https://github.com/jiixyj/libebur128/blob/master/test/tests.c#L322, and those tests printed "FAILED"? If so, that indeed points to some bug in the library... Yes, I meant I...