Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
paulpacifico authored Jan 10, 2024
1 parent 6291d34 commit 63b86fc
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions src/library/FFMPEG.java
Original file line number Diff line number Diff line change
Expand Up @@ -1966,9 +1966,18 @@ private static void postAnalyse() {
|| comboFonctions.getSelectedItem().toString().equals(language.getProperty("functionNormalization"))
|| (caseNormalizeAudio.isSelected() && caseNormalizeAudio.isVisible()))
{
analyseLufs = null;
analyseLufs = getAll.toString().substring(getAll.toString().lastIndexOf("Summary:") + 12);

analyseLufs = "";

for (String line : getAll.toString().substring(getAll.toString().lastIndexOf("Summary:") + 12).split(System.lineSeparator()))
{
if (line.contains("[out#"))
{
break;
}
else
analyseLufs += line + System.lineSeparator();
}

shortTermValues = new StringBuilder();

float momentaryTerm = (float) -1000.0;
Expand Down

0 comments on commit 63b86fc

Please sign in to comment.