jiixyj / libebur128

A library implementing the EBU R128 loudness standard.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Realtime Loudness/ Peak Monitoring

kartdroid opened this issue · comments

I am planning to monitor Loudness of Live Channels with a history of last 30 minutes .
So , does setting ebur128_set_max_history to 30 minutes alone guarantee proper result for this use case ?

Can i leave audio_data(ebur128_set_max_window) window's to default values of the Modes set?

Also , please confirm that the below datastructure is also used as a circular linked list .

/** Linked list of block energies. */
struct ebur128_double_queue block_list;

By looking at the code, i believe it is circular , but can u officially confirm ?

I believe your use case should work, but not in the current master. See issue #85.

Yeah i saw that but i am setting only history not window. So it should work isn't it?