|
|
|
|
@@ -30,10 +30,13 @@
|
|
|
|
|
#include "ardour/export_status.h"
|
|
|
|
|
#include "ardour/export_timespan.h"
|
|
|
|
|
|
|
|
|
|
#include "gtkmm2ext/utils.h"
|
|
|
|
|
|
|
|
|
|
#include "widgets/ardour_spacer.h"
|
|
|
|
|
|
|
|
|
|
#include "export_report.h"
|
|
|
|
|
#include "loudness_dialog.h"
|
|
|
|
|
#include "ui_config.h"
|
|
|
|
|
|
|
|
|
|
#include "pbd/i18n.h"
|
|
|
|
|
|
|
|
|
|
@@ -42,11 +45,16 @@ using namespace ARDOUR;
|
|
|
|
|
using namespace ArdourWidgets;
|
|
|
|
|
|
|
|
|
|
LoudnessDialog::LoudnessDialog (Session* s, AudioRange const& ar, bool as)
|
|
|
|
|
: ArdourDialog (_("Loudness Mate"))
|
|
|
|
|
: ArdourDialog (as ? _("Loudness Assistant") : _("Loudness Analyzer and Normalizer"))
|
|
|
|
|
, _session (s)
|
|
|
|
|
, _range (ar)
|
|
|
|
|
, _status (s->get_export_status ())
|
|
|
|
|
, _autostart (as)
|
|
|
|
|
, _dbfs_btn (_("Peak:"), ArdourButton::led_default_elements, true)
|
|
|
|
|
, _dbtp_btn (_("True Peak:"), ArdourButton::led_default_elements, true)
|
|
|
|
|
, _lufs_i_btn (_("Integrated Loudness:"), ArdourButton::led_default_elements, true)
|
|
|
|
|
, _lufs_s_btn (_("Max. Short Loudness:"), ArdourButton::led_default_elements, true)
|
|
|
|
|
, _lufs_m_btn (_("Max. Momentary Loudness:"), ArdourButton::led_default_elements, true)
|
|
|
|
|
, _rt_analysis_button (_("Realtime"), ArdourButton::led_default_elements, true)
|
|
|
|
|
, _start_analysis_button (_("Analyze"))
|
|
|
|
|
, _show_report_button (_("Show Detailed Report"))
|
|
|
|
|
@@ -60,12 +68,41 @@ LoudnessDialog::LoudnessDialog (Session* s, AudioRange const& ar, bool as)
|
|
|
|
|
, _lufs_i_spinbutton (_lufs_i_adjustment, 0.1, 1)
|
|
|
|
|
, _lufs_s_spinbutton (_lufs_s_adjustment, 0.1, 1)
|
|
|
|
|
, _lufs_m_spinbutton (_lufs_m_adjustment, 0.1, 1)
|
|
|
|
|
, _gain (0)
|
|
|
|
|
, _gain_init (0)
|
|
|
|
|
, _gain_norm (0)
|
|
|
|
|
{
|
|
|
|
|
_start_analysis_button.set_name ("generic button");
|
|
|
|
|
_rt_analysis_button.set_name ("generic button");
|
|
|
|
|
_show_report_button.set_name ("generic button");
|
|
|
|
|
|
|
|
|
|
_dbfs_btn.set_name ("generic button");
|
|
|
|
|
_dbtp_btn.set_name ("generic button");
|
|
|
|
|
_lufs_i_btn.set_name ("generic button");
|
|
|
|
|
_lufs_s_btn.set_name ("generic button");
|
|
|
|
|
_lufs_m_btn.set_name ("generic button");
|
|
|
|
|
|
|
|
|
|
_dbfs_btn.set_led_left (true);
|
|
|
|
|
_dbtp_btn.set_led_left (true);
|
|
|
|
|
_lufs_i_btn.set_led_left (true);
|
|
|
|
|
_lufs_s_btn.set_led_left (true);
|
|
|
|
|
_lufs_m_btn.set_led_left (true);
|
|
|
|
|
|
|
|
|
|
_dbfs_label.modify_font (UIConfiguration::instance().get_NormalMonospaceFont());
|
|
|
|
|
_dbtp_label.modify_font (UIConfiguration::instance().get_NormalMonospaceFont());
|
|
|
|
|
_lufs_i_label.modify_font (UIConfiguration::instance().get_NormalMonospaceFont());
|
|
|
|
|
_lufs_s_label.modify_font (UIConfiguration::instance().get_NormalMonospaceFont());
|
|
|
|
|
_lufs_m_label.modify_font (UIConfiguration::instance().get_NormalMonospaceFont());
|
|
|
|
|
|
|
|
|
|
_delta_dbfs_label.modify_font (UIConfiguration::instance().get_NormalMonospaceFont());
|
|
|
|
|
_delta_dbtp_label.modify_font (UIConfiguration::instance().get_NormalMonospaceFont());
|
|
|
|
|
_delta_lufs_i_label.modify_font (UIConfiguration::instance().get_NormalMonospaceFont());
|
|
|
|
|
_delta_lufs_s_label.modify_font (UIConfiguration::instance().get_NormalMonospaceFont());
|
|
|
|
|
_delta_lufs_m_label.modify_font (UIConfiguration::instance().get_NormalMonospaceFont());
|
|
|
|
|
|
|
|
|
|
_gain_init_label.modify_font (UIConfiguration::instance().get_NormalMonospaceFont());
|
|
|
|
|
_gain_norm_label.modify_font (UIConfiguration::instance().get_NormalMonospaceFont());
|
|
|
|
|
_gain_total_label.modify_font (UIConfiguration::instance().get_NormalMonospaceFont());
|
|
|
|
|
|
|
|
|
|
Label* l;
|
|
|
|
|
Table* t = manage (new Table (8, 3, false));
|
|
|
|
|
t->set_spacings (4);
|
|
|
|
|
@@ -85,18 +122,18 @@ LoudnessDialog::LoudnessDialog (Session* s, AudioRange const& ar, bool as)
|
|
|
|
|
l->set_use_markup (true);
|
|
|
|
|
t->attach (*l, 3, 4, 1, 2);
|
|
|
|
|
|
|
|
|
|
l = manage (new Label (_("Peak:"), ALIGN_LEFT));
|
|
|
|
|
t->attach (*l, 0, 1, 2, 3);
|
|
|
|
|
l = manage (new Label (_("True Peak:"), ALIGN_LEFT));
|
|
|
|
|
t->attach (*l, 0, 1, 3, 4);
|
|
|
|
|
l = manage (new Label (_("Integrated Loudness:"), ALIGN_LEFT));
|
|
|
|
|
t->attach (*l, 0, 1, 4, 5);
|
|
|
|
|
l = manage (new Label (_("Max. Short Loudness:"), ALIGN_LEFT));
|
|
|
|
|
t->attach (*l, 0, 1, 5, 6);
|
|
|
|
|
l = manage (new Label (_("Max. Momentary Loudness:"), ALIGN_LEFT));
|
|
|
|
|
t->attach (*l, 0, 1, 6, 7);
|
|
|
|
|
l = manage (new Label (_("Suggested Gain:"), ALIGN_LEFT));
|
|
|
|
|
t->attach (_dbfs_btn, 0, 1, 2, 3);
|
|
|
|
|
t->attach (_dbtp_btn, 0, 1, 3, 4);
|
|
|
|
|
t->attach (_lufs_i_btn, 0, 1, 4, 5);
|
|
|
|
|
t->attach (_lufs_s_btn, 0, 1, 5, 6);
|
|
|
|
|
t->attach (_lufs_m_btn, 0, 1, 6, 7);
|
|
|
|
|
|
|
|
|
|
l = manage (new Label (_("Gain to normalize:"), ALIGN_LEFT));
|
|
|
|
|
t->attach (*l, 0, 1, 8, 9);
|
|
|
|
|
l = manage (new Label (_("Previously applied gain:"), ALIGN_LEFT));
|
|
|
|
|
t->attach (*l, 0, 1, 9, 10);
|
|
|
|
|
l = manage (new Label (_("Total gain:"), ALIGN_LEFT));
|
|
|
|
|
t->attach (*l, 0, 1, 10, 11);
|
|
|
|
|
|
|
|
|
|
t->attach (_dbfs_label, 1, 2, 2, 3);
|
|
|
|
|
t->attach (_dbtp_label, 1, 2, 3, 4);
|
|
|
|
|
@@ -104,11 +141,11 @@ LoudnessDialog::LoudnessDialog (Session* s, AudioRange const& ar, bool as)
|
|
|
|
|
t->attach (_lufs_s_label, 1, 2, 5, 6);
|
|
|
|
|
t->attach (_lufs_m_label, 1, 2, 6, 7);
|
|
|
|
|
|
|
|
|
|
t->attach (_dbfs_spinbutton, 2, 3, 2, 3);
|
|
|
|
|
t->attach (_dbtp_spinbutton, 2, 3, 3, 4);
|
|
|
|
|
t->attach (_lufs_i_spinbutton, 2, 3, 4, 5);
|
|
|
|
|
t->attach (_lufs_s_spinbutton, 2, 3, 5, 6);
|
|
|
|
|
t->attach (_lufs_m_spinbutton, 2, 3, 6, 7);
|
|
|
|
|
t->attach (_dbfs_spinbutton, 2, 3, 2, 3, EXPAND|FILL, EXPAND|FILL, 8, 0);
|
|
|
|
|
t->attach (_dbtp_spinbutton, 2, 3, 3, 4, EXPAND|FILL, EXPAND|FILL, 8, 0);
|
|
|
|
|
t->attach (_lufs_i_spinbutton, 2, 3, 4, 5, EXPAND|FILL, EXPAND|FILL, 8, 0);
|
|
|
|
|
t->attach (_lufs_s_spinbutton, 2, 3, 5, 6, EXPAND|FILL, EXPAND|FILL, 8, 0);
|
|
|
|
|
t->attach (_lufs_m_spinbutton, 2, 3, 6, 7, EXPAND|FILL, EXPAND|FILL, 8, 0);
|
|
|
|
|
|
|
|
|
|
t->attach (_delta_dbfs_label, 3, 4, 2, 3);
|
|
|
|
|
t->attach (_delta_dbtp_label, 3, 4, 3, 4);
|
|
|
|
|
@@ -117,8 +154,26 @@ LoudnessDialog::LoudnessDialog (Session* s, AudioRange const& ar, bool as)
|
|
|
|
|
t->attach (_delta_lufs_m_label, 3, 4, 6, 7);
|
|
|
|
|
|
|
|
|
|
ArdourHSpacer* spc = manage (new ArdourHSpacer (1.0));
|
|
|
|
|
t->attach (*spc , 1, 4, 7, 8);
|
|
|
|
|
t->attach (_gain_label, 3, 4, 8, 9);
|
|
|
|
|
t->attach (*spc , 1, 4, 7, 8);
|
|
|
|
|
t->attach (_gain_norm_label, 3, 4, 8, 9);
|
|
|
|
|
t->attach (_gain_init_label, 3, 4, 9, 10);
|
|
|
|
|
t->attach (_gain_total_label, 3, 4, 10, 11);
|
|
|
|
|
|
|
|
|
|
_dbfs_label.set_alignment (ALIGN_RIGHT);
|
|
|
|
|
_dbtp_label.set_alignment (ALIGN_RIGHT);
|
|
|
|
|
_lufs_i_label.set_alignment (ALIGN_RIGHT);
|
|
|
|
|
_lufs_s_label.set_alignment (ALIGN_RIGHT);
|
|
|
|
|
_lufs_m_label.set_alignment (ALIGN_RIGHT);
|
|
|
|
|
|
|
|
|
|
_delta_dbfs_label.set_alignment (ALIGN_RIGHT);
|
|
|
|
|
_delta_dbtp_label.set_alignment (ALIGN_RIGHT);
|
|
|
|
|
_delta_lufs_i_label.set_alignment (ALIGN_RIGHT);
|
|
|
|
|
_delta_lufs_s_label.set_alignment (ALIGN_RIGHT);
|
|
|
|
|
_delta_lufs_m_label.set_alignment (ALIGN_RIGHT);
|
|
|
|
|
|
|
|
|
|
_gain_norm_label.set_alignment (ALIGN_RIGHT);
|
|
|
|
|
_gain_init_label.set_alignment (ALIGN_RIGHT);
|
|
|
|
|
_gain_total_label.set_alignment (ALIGN_RIGHT);
|
|
|
|
|
|
|
|
|
|
_result_box.pack_start (*t, false, false, 6);
|
|
|
|
|
_progress_box.pack_start (_progress_bar, false, false, 6);
|
|
|
|
|
@@ -147,11 +202,19 @@ LoudnessDialog::LoudnessDialog (Session* s, AudioRange const& ar, bool as)
|
|
|
|
|
get_vbox()->pack_start (_setup_box);
|
|
|
|
|
get_vbox()->pack_start (_progress_box);
|
|
|
|
|
get_vbox()->pack_start (_result_box);
|
|
|
|
|
get_vbox()->set_size_request(400,-1);
|
|
|
|
|
|
|
|
|
|
_progress_box.set_size_request (400,-1);
|
|
|
|
|
|
|
|
|
|
_ok_button = add_button (Stock::APPLY, RESPONSE_APPLY);
|
|
|
|
|
_cancel_button = add_button (Stock::CANCEL, RESPONSE_CANCEL);
|
|
|
|
|
|
|
|
|
|
// TODO preset, remember
|
|
|
|
|
_dbfs_btn.set_active (false);
|
|
|
|
|
_dbtp_btn.set_active (true);
|
|
|
|
|
_lufs_i_btn.set_active (true);
|
|
|
|
|
_lufs_s_btn.set_active (false);
|
|
|
|
|
_lufs_m_btn.set_active (false);
|
|
|
|
|
|
|
|
|
|
_cancel_button->signal_clicked().connect (sigc::mem_fun (this, &LoudnessDialog::cancel_analysis));
|
|
|
|
|
_dbfs_spinbutton.signal_value_changed().connect (mem_fun (*this, &LoudnessDialog::calculate_gain));
|
|
|
|
|
_dbtp_spinbutton.signal_value_changed().connect (mem_fun (*this, &LoudnessDialog::calculate_gain));
|
|
|
|
|
@@ -160,6 +223,11 @@ LoudnessDialog::LoudnessDialog (Session* s, AudioRange const& ar, bool as)
|
|
|
|
|
_lufs_m_spinbutton.signal_value_changed().connect (mem_fun (*this, &LoudnessDialog::calculate_gain));
|
|
|
|
|
_show_report_button.signal_clicked.connect (mem_fun (*this, &LoudnessDialog::display_report));
|
|
|
|
|
_start_analysis_button.signal_clicked.connect (mem_fun (*this, &LoudnessDialog::start_analysis));
|
|
|
|
|
_dbfs_btn.signal_clicked.connect (mem_fun (*this, &LoudnessDialog::calculate_gain));
|
|
|
|
|
_dbtp_btn.signal_clicked.connect (mem_fun (*this, &LoudnessDialog::calculate_gain));
|
|
|
|
|
_lufs_i_btn.signal_clicked.connect (mem_fun (*this, &LoudnessDialog::calculate_gain));
|
|
|
|
|
_lufs_s_btn.signal_clicked.connect (mem_fun (*this, &LoudnessDialog::calculate_gain));
|
|
|
|
|
_lufs_m_btn.signal_clicked.connect (mem_fun (*this, &LoudnessDialog::calculate_gain));
|
|
|
|
|
|
|
|
|
|
_ok_button->set_sensitive (false);
|
|
|
|
|
_show_report_button.set_sensitive (false);
|
|
|
|
|
@@ -335,17 +403,42 @@ LoudnessDialog::calculate_gain ()
|
|
|
|
|
float lufs_s = _lufs_s_spinbutton.get_value();
|
|
|
|
|
float lufs_m = _lufs_m_spinbutton.get_value();
|
|
|
|
|
|
|
|
|
|
_gain = dbfs - _dbfs;
|
|
|
|
|
_gain = std::min (_gain, dbtp - _dbtp);
|
|
|
|
|
_gain = std::min (_gain, lufs_i - _lufs_i);
|
|
|
|
|
_gain = std::min (_gain, lufs_s - _lufs_s);
|
|
|
|
|
_gain = std::min (_gain, lufs_m - _lufs_m);
|
|
|
|
|
float gain = 0;
|
|
|
|
|
bool set = false;
|
|
|
|
|
|
|
|
|
|
_delta_dbfs_label.set_text (string_compose (_("%1 dB"), std::setprecision (2), std::fixed, dbfs - _dbfs));
|
|
|
|
|
_delta_dbtp_label.set_text (string_compose (_("%1 dB"), std::setprecision (2), std::fixed, dbtp - _dbtp));
|
|
|
|
|
_delta_lufs_i_label.set_text (string_compose (_("%1 LU"), std::setprecision (2), std::fixed, lufs_i - _lufs_i));
|
|
|
|
|
_delta_lufs_s_label.set_text (string_compose (_("%1 LU"), std::setprecision (2), std::fixed, lufs_s - _lufs_s));
|
|
|
|
|
_delta_lufs_m_label.set_text (string_compose (_("%1 LU"), std::setprecision (2), std::fixed, lufs_m - _lufs_m));
|
|
|
|
|
#define MIN_IF_SET(A, B) \
|
|
|
|
|
{ if (set) { gain = std::min (gain, (A) - (B));} else { gain = (A) - (B); } set = true; }
|
|
|
|
|
|
|
|
|
|
_gain_label.set_text (string_compose (_("%1 dB"), std::setprecision (2), std::fixed, _gain));
|
|
|
|
|
if (_dbfs_btn.get_active ()) {
|
|
|
|
|
MIN_IF_SET (dbfs, _dbfs);
|
|
|
|
|
}
|
|
|
|
|
if (_dbtp_btn.get_active ()) {
|
|
|
|
|
MIN_IF_SET (dbtp, _dbtp);
|
|
|
|
|
}
|
|
|
|
|
if (_lufs_i_btn.get_active ()) {
|
|
|
|
|
MIN_IF_SET (lufs_i, _lufs_i);
|
|
|
|
|
}
|
|
|
|
|
if (_lufs_s_btn.get_active ()) {
|
|
|
|
|
MIN_IF_SET (lufs_s, _lufs_s);
|
|
|
|
|
}
|
|
|
|
|
if (_lufs_m_btn.get_active ()) {
|
|
|
|
|
MIN_IF_SET (lufs_m, _lufs_m);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_delta_dbfs_label.set_text (string_compose (_("%1 dB"), std::setprecision (2), std::showpos, std::fixed, dbfs - _dbfs));
|
|
|
|
|
_delta_dbtp_label.set_text (string_compose (_("%1 dB"), std::setprecision (2), std::showpos, std::fixed, dbtp - _dbtp));
|
|
|
|
|
_delta_lufs_i_label.set_text (string_compose (_("%1 LU"), std::setprecision (2), std::showpos, std::fixed, lufs_i - _lufs_i));
|
|
|
|
|
_delta_lufs_s_label.set_text (string_compose (_("%1 LU"), std::setprecision (2), std::showpos, std::fixed, lufs_s - _lufs_s));
|
|
|
|
|
_delta_lufs_m_label.set_text (string_compose (_("%1 LU"), std::setprecision (2), std::showpos, std::fixed, lufs_m - _lufs_m));
|
|
|
|
|
|
|
|
|
|
_delta_dbfs_label.set_sensitive (_dbfs_btn.get_active ());
|
|
|
|
|
_delta_dbtp_label.set_sensitive (_dbtp_btn.get_active ());
|
|
|
|
|
_delta_lufs_i_label.set_sensitive (_lufs_i_btn.get_active ());
|
|
|
|
|
_delta_lufs_s_label.set_sensitive (_lufs_s_btn.get_active ());
|
|
|
|
|
_delta_lufs_m_label.set_sensitive (_lufs_m_btn.get_active ());
|
|
|
|
|
|
|
|
|
|
_gain_norm = gain;
|
|
|
|
|
_gain_norm_label.set_text (string_compose (_("%1 dB"), std::setprecision (2), std::showpos, std::fixed, _gain_norm));
|
|
|
|
|
_gain_init_label.set_text (string_compose (_("%1 dB"), std::setprecision (2), std::showpos, std::fixed, _gain_init));
|
|
|
|
|
_gain_total_label.set_markup (string_compose (_("<b>%1 dB</b>"), std::setw(7), std::setprecision (2), std::showpos, std::fixed, gain_db ()));
|
|
|
|
|
}
|
|
|
|
|
|