Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 34d1f504c0 | |||
| d4a64d4e72 | |||
| 44201a0bbb | |||
|
|
1d19cd4c98 | ||
| 4c89c70b05 | |||
|
|
33eb219904 |
@@ -57,7 +57,7 @@
|
|||||||
<groupId>commons-collections</groupId>
|
<groupId>commons-collections</groupId>
|
||||||
</exclusion>
|
</exclusion>
|
||||||
</exclusions>
|
</exclusions>
|
||||||
<version>1.7.0</version>
|
<version>1.9.4</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>commons-logging</groupId>
|
<groupId>commons-logging</groupId>
|
||||||
@@ -138,7 +138,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.thoughtworks.xstream</groupId>
|
<groupId>com.thoughtworks.xstream</groupId>
|
||||||
<artifactId>xstream</artifactId>
|
<artifactId>xstream</artifactId>
|
||||||
<version>1.4.8</version>
|
<version>1.4.10-java7</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.ant</groupId>
|
<groupId>org.apache.ant</groupId>
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
version=0.4.2
|
version=0.4.3
|
||||||
|
|||||||
@@ -185,6 +185,7 @@ public class AudiobookRecorder extends JFrame implements DocumentListener {
|
|||||||
JToggleButtonSpacePlay selectCutMode;
|
JToggleButtonSpacePlay selectCutMode;
|
||||||
JButtonSpacePlay doCutSplit;
|
JButtonSpacePlay doCutSplit;
|
||||||
JToggleButtonSpacePlay editGainCurve;
|
JToggleButtonSpacePlay editGainCurve;
|
||||||
|
JButtonSpacePlay autoCreatePoints;
|
||||||
|
|
||||||
JButtonSpacePlay refreshSentence;
|
JButtonSpacePlay refreshSentence;
|
||||||
|
|
||||||
@@ -449,9 +450,20 @@ public class AudiobookRecorder extends JFrame implements DocumentListener {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
autoCreatePoints = new JButtonSpacePlay(Icons.normalize, "Create peak points", new ActionListener() {
|
||||||
|
public void actionPerformed(ActionEvent e) {
|
||||||
|
Debug.trace();
|
||||||
|
if (selectedSentence != null) {
|
||||||
|
selectedSentence.autoAddPeakGainPoints();
|
||||||
|
updateWaveform(true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
editGainCurve = new JToggleButtonSpacePlay(Icons.normalize, "Edit gain curve", new ActionListener() {
|
editGainCurve = new JToggleButtonSpacePlay(Icons.normalize, "Edit gain curve", new ActionListener() {
|
||||||
public void actionPerformed(ActionEvent e) {
|
public void actionPerformed(ActionEvent e) {
|
||||||
Debug.trace();
|
Debug.trace();
|
||||||
|
autoCreatePoints.setEnabled(editGainCurve.isSelected());
|
||||||
sampleWaveform.setDisplayGainCurve(editGainCurve.isSelected());
|
sampleWaveform.setDisplayGainCurve(editGainCurve.isSelected());
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@@ -635,6 +647,8 @@ public class AudiobookRecorder extends JFrame implements DocumentListener {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
controlsBottom.add(autoCreatePoints);
|
||||||
|
autoCreatePoints.setEnabled(false);
|
||||||
controlsBottom.add(editGainCurve);
|
controlsBottom.add(editGainCurve);
|
||||||
controlsBottom.addSeparator();
|
controlsBottom.addSeparator();
|
||||||
controlsBottom.add(selectSplitMode);
|
controlsBottom.add(selectSplitMode);
|
||||||
@@ -2458,6 +2472,7 @@ public class AudiobookRecorder extends JFrame implements DocumentListener {
|
|||||||
} else {
|
} else {
|
||||||
lastGain = snt.normalize(lastGain - variance, lastGain + variance);
|
lastGain = snt.normalize(lastGain - variance, lastGain + variance);
|
||||||
}
|
}
|
||||||
|
snt.autoAddPeakGainPoints();
|
||||||
}
|
}
|
||||||
|
|
||||||
dialog.closeDialog();
|
dialog.closeDialog();
|
||||||
|
|||||||
@@ -78,6 +78,21 @@ public class Biquad implements Effect {
|
|||||||
setPeakGain(peakGainDB);
|
setPeakGain(peakGainDB);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Special single channel version for wave profile processing
|
||||||
|
public void process(double[] samples) {
|
||||||
|
Debug.trace();
|
||||||
|
lz1 = 0d;
|
||||||
|
lz2 = 0d;
|
||||||
|
for (int i = 0; i < samples.length; i++) {
|
||||||
|
double lout = samples[i] * a0 + lz1;
|
||||||
|
|
||||||
|
lz1 = samples[i] * a1 + lz2 - b1 * lout;
|
||||||
|
lz2 = samples[i] * a2 - b2 * lout;
|
||||||
|
|
||||||
|
samples[i] = lout;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public void process(double[][] samples) {
|
public void process(double[][] samples) {
|
||||||
Debug.trace();
|
Debug.trace();
|
||||||
lz1 = 0d;
|
lz1 = 0d;
|
||||||
|
|||||||
@@ -472,6 +472,7 @@ public class Book extends BookTreeNode {
|
|||||||
public void onSelect(BookTreeNode target) {
|
public void onSelect(BookTreeNode target) {
|
||||||
Debug.trace();
|
Debug.trace();
|
||||||
AudiobookRecorder.setSelectedBook(this);
|
AudiobookRecorder.setSelectedBook(this);
|
||||||
|
AudiobookRecorder.window.setTitle("AudioBook Recorder :: " + name);
|
||||||
if (target == this) {
|
if (target == this) {
|
||||||
AudiobookRecorder.setSelectedChapter(null);
|
AudiobookRecorder.setSelectedChapter(null);
|
||||||
AudiobookRecorder.setSelectedSentence(null);
|
AudiobookRecorder.setSelectedSentence(null);
|
||||||
|
|||||||
@@ -60,7 +60,9 @@ public class Options extends JDialog {
|
|||||||
JSpinner shortSentenceGap;
|
JSpinner shortSentenceGap;
|
||||||
JSpinner postParagraphGap;
|
JSpinner postParagraphGap;
|
||||||
JSpinner postSectionGap;
|
JSpinner postSectionGap;
|
||||||
JSpinner maxGainVariance;
|
JSpinner rmsLow;
|
||||||
|
JSpinner rmsHigh;
|
||||||
|
JCheckBox autoNormalize;
|
||||||
JTextField ffmpegLocation;
|
JTextField ffmpegLocation;
|
||||||
JComboBox<KVPair> bitRate;
|
JComboBox<KVPair> bitRate;
|
||||||
JComboBox<KVPair> channels;
|
JComboBox<KVPair> channels;
|
||||||
@@ -358,7 +360,9 @@ public class Options extends JDialog {
|
|||||||
trimMethod = addDropdown(optionsPanel, "Auto-trim method:", getTrimMethods(), get("audio.recording.trim"), "None: don't auto-trim. FFT: Compare the FFT profile of blocks to the room noise profile and trim silent blocks, Peak: Look for the start and end rise and fall points");
|
trimMethod = addDropdown(optionsPanel, "Auto-trim method:", getTrimMethods(), get("audio.recording.trim"), "None: don't auto-trim. FFT: Compare the FFT profile of blocks to the room noise profile and trim silent blocks, Peak: Look for the start and end rise and fall points");
|
||||||
fftThreshold = addSpinner(optionsPanel, "FFT threshold:", 0, 100, 1, getInteger("audio.recording.trim.fft"), "", "This specifies the difference (in hundredths) between the power of FFT buckets in a sample block compared to the overall power of the same FFT bucket in the room noise. Raising this number makes the FFT trimming less sensitive.");
|
fftThreshold = addSpinner(optionsPanel, "FFT threshold:", 0, 100, 1, getInteger("audio.recording.trim.fft"), "", "This specifies the difference (in hundredths) between the power of FFT buckets in a sample block compared to the overall power of the same FFT bucket in the room noise. Raising this number makes the FFT trimming less sensitive.");
|
||||||
fftBlockSize = addDropdown(optionsPanel, "FFT Block size:", getFFTBlockSizes(), get("audio.recording.trim.blocksize"), "How large an FFT block should be when processing. Larger values increase sensitivity but at the epxense of resolution.");
|
fftBlockSize = addDropdown(optionsPanel, "FFT Block size:", getFFTBlockSizes(), get("audio.recording.trim.blocksize"), "How large an FFT block should be when processing. Larger values increase sensitivity but at the epxense of resolution.");
|
||||||
maxGainVariance = addSpinner(optionsPanel, "Maximum gain variance:", 0, 100, 1, getInteger("audio.recording.variance"), "", "This is how much the gain is allowed to vary by from phrase to phrase when normalizing an entire chapter.");
|
rmsLow = addSpinner(optionsPanel, "Target RMS (low):", -100, 0, 1, getInteger("audio.recording.rms.low"), "", "When normalizing this is the lowest target average RMS to aim for");
|
||||||
|
rmsHigh = addSpinner(optionsPanel, "Target RMS (high):", -100, 0, 1, getInteger("audio.recording.rms.high"), "", "When normalizing this is the highest target average RMS to aim for");
|
||||||
|
autoNormalize = addCheckBox(optionsPanel, "Enable automatic normalization", getBoolean("process.normalize"), "This will automatically normalize each phrase after recording");
|
||||||
|
|
||||||
addSeparator(optionsPanel);
|
addSeparator(optionsPanel);
|
||||||
|
|
||||||
@@ -599,7 +603,9 @@ public class Options extends JDialog {
|
|||||||
defaultPrefs.put("catenation.post-section", "3000");
|
defaultPrefs.put("catenation.post-section", "3000");
|
||||||
|
|
||||||
defaultPrefs.put("audio.recording.trim.fft", "10");
|
defaultPrefs.put("audio.recording.trim.fft", "10");
|
||||||
defaultPrefs.put("audio.recording.variance", "10");
|
defaultPrefs.put("audio.recording.rms.low", "-22");
|
||||||
|
defaultPrefs.put("audio.recording.rms.high", "-20");
|
||||||
|
defaultPrefs.put("process.normalize", "true");
|
||||||
|
|
||||||
defaultPrefs.put("path.storage", (new File(System.getProperty("user.home"), "Recordings")).toString());
|
defaultPrefs.put("path.storage", (new File(System.getProperty("user.home"), "Recordings")).toString());
|
||||||
defaultPrefs.put("path.archive", (new File(new File(System.getProperty("user.home"), "Recordings"),"archive")).toString());
|
defaultPrefs.put("path.archive", (new File(new File(System.getProperty("user.home"), "Recordings"),"archive")).toString());
|
||||||
@@ -736,7 +742,9 @@ public class Options extends JDialog {
|
|||||||
set("editor.external", externalEditor.getText());
|
set("editor.external", externalEditor.getText());
|
||||||
set("cache.size", cacheSize.getValue());
|
set("cache.size", cacheSize.getValue());
|
||||||
set("audio.recording.trim.fft", fftThreshold.getValue());
|
set("audio.recording.trim.fft", fftThreshold.getValue());
|
||||||
set("audio.recording.variance", maxGainVariance.getValue());
|
set("audio.recording.rms.low", rmsLow.getValue());
|
||||||
|
set("audio.recording.rms.high", rmsHigh.getValue());
|
||||||
|
set("process.normalize", autoNormalize.isSelected());
|
||||||
if (fftBlockSize.getSelectedItem() != null) set("audio.recording.trim.blocksize", ((KVPair)fftBlockSize.getSelectedItem()).key);
|
if (fftBlockSize.getSelectedItem() != null) set("audio.recording.trim.blocksize", ((KVPair)fftBlockSize.getSelectedItem()).key);
|
||||||
if (playbackBlockSize.getSelectedItem() != null) set("audio.playback.blocksize", ((KVPair)playbackBlockSize.getSelectedItem()).key);
|
if (playbackBlockSize.getSelectedItem() != null) set("audio.playback.blocksize", ((KVPair)playbackBlockSize.getSelectedItem()).key);
|
||||||
|
|
||||||
|
|||||||
@@ -104,6 +104,8 @@ public class Sentence extends BookTreeNode implements Cacheable {
|
|||||||
|
|
||||||
double[] fftProfile = null;
|
double[] fftProfile = null;
|
||||||
|
|
||||||
|
double[] waveProfile = null;
|
||||||
|
|
||||||
TreeMap<Integer, Double> gainPoints = null;
|
TreeMap<Integer, Double> gainPoints = null;
|
||||||
|
|
||||||
RecordingThread recordingThread;
|
RecordingThread recordingThread;
|
||||||
@@ -332,6 +334,7 @@ public class Sentence extends BookTreeNode implements Cacheable {
|
|||||||
public void run() {
|
public void run() {
|
||||||
sentence.autoTrimSamplePeak();
|
sentence.autoTrimSamplePeak();
|
||||||
AudiobookRecorder.window.updateWaveformMarkers();
|
AudiobookRecorder.window.updateWaveformMarkers();
|
||||||
|
if (Options.getBoolean("process.normalize")) sentence.normalize();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
} else if (tm.equals("fft")) {
|
} else if (tm.equals("fft")) {
|
||||||
@@ -339,6 +342,7 @@ public class Sentence extends BookTreeNode implements Cacheable {
|
|||||||
public void run() {
|
public void run() {
|
||||||
sentence.autoTrimSampleFFT();
|
sentence.autoTrimSampleFFT();
|
||||||
AudiobookRecorder.window.updateWaveformMarkers();
|
AudiobookRecorder.window.updateWaveformMarkers();
|
||||||
|
if (Options.getBoolean("process.normalize")) sentence.normalize();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
@@ -449,6 +453,7 @@ public class Sentence extends BookTreeNode implements Cacheable {
|
|||||||
updateCrossings();
|
updateCrossings();
|
||||||
intens = null;
|
intens = null;
|
||||||
samples = null;
|
samples = null;
|
||||||
|
waveProfile = null;
|
||||||
processed = true;
|
processed = true;
|
||||||
reloadTree();
|
reloadTree();
|
||||||
}
|
}
|
||||||
@@ -791,6 +796,7 @@ public class Sentence extends BookTreeNode implements Cacheable {
|
|||||||
public void clearCache() {
|
public void clearCache() {
|
||||||
Debug.trace();
|
Debug.trace();
|
||||||
audioData = null;
|
audioData = null;
|
||||||
|
waveProfile = null;
|
||||||
processedAudio = null;
|
processedAudio = null;
|
||||||
storedFormat = null;
|
storedFormat = null;
|
||||||
}
|
}
|
||||||
@@ -940,6 +946,10 @@ public class Sentence extends BookTreeNode implements Cacheable {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void setGain(double g) {
|
public void setGain(double g) {
|
||||||
|
setGain(g, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setGain(double g, boolean batch) {
|
||||||
Debug.trace();
|
Debug.trace();
|
||||||
if (g <= 0.0001d) g = 1.0d;
|
if (g <= 0.0001d) g = 1.0d;
|
||||||
if (g == gain) return;
|
if (g == gain) return;
|
||||||
@@ -950,7 +960,7 @@ public class Sentence extends BookTreeNode implements Cacheable {
|
|||||||
if (gint != gainint) {
|
if (gint != gainint) {
|
||||||
refreshAllData();
|
refreshAllData();
|
||||||
peak = -1;
|
peak = -1;
|
||||||
reloadTree();
|
if (!batch) reloadTree();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -962,27 +972,28 @@ public class Sentence extends BookTreeNode implements Cacheable {
|
|||||||
public double normalize(double low, double high) {
|
public double normalize(double low, double high) {
|
||||||
Debug.trace();
|
Debug.trace();
|
||||||
if (locked) return gain;
|
if (locked) return gain;
|
||||||
double max = getPeakValue(false);
|
|
||||||
double d = 0.708 / max;
|
int targetLow = Options.getInteger("audio.recording.rms.low");
|
||||||
if (d < low) d = low;
|
int targetHigh = Options.getInteger("audio.recording.rms.high");
|
||||||
if (d > high) d = high;
|
|
||||||
setGain(d);
|
while ((int)getRMS() < targetLow) {
|
||||||
|
setGain(gain + 0.1);
|
||||||
|
if (gain >= 10.0d) break;
|
||||||
|
}
|
||||||
|
|
||||||
|
while ((int)getRMS() > targetHigh) {
|
||||||
|
setGain(gain - 0.1);
|
||||||
|
}
|
||||||
|
|
||||||
|
refreshAllData();
|
||||||
peak = -1;
|
peak = -1;
|
||||||
getPeak();
|
getPeak();
|
||||||
reloadTree();
|
reloadTree();
|
||||||
return d;
|
return gain;
|
||||||
}
|
}
|
||||||
|
|
||||||
public double normalize() {
|
public double normalize() {
|
||||||
Debug.trace();
|
return normalize(0, 0);
|
||||||
if (locked) return gain;
|
|
||||||
double max = getPeakValue(false);
|
|
||||||
double d = 0.708 / max;
|
|
||||||
setGain(d);
|
|
||||||
peak = -1;
|
|
||||||
getPeak();
|
|
||||||
reloadTree();
|
|
||||||
return d;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
class ExternalEditor implements Runnable {
|
class ExternalEditor implements Runnable {
|
||||||
@@ -1832,6 +1843,7 @@ public class Sentence extends BookTreeNode implements Cacheable {
|
|||||||
peak = -1d;
|
peak = -1d;
|
||||||
sampleSize = -1;
|
sampleSize = -1;
|
||||||
audioData = null;
|
audioData = null;
|
||||||
|
waveProfile = null;
|
||||||
processedAudio = null;
|
processedAudio = null;
|
||||||
fftProfile = null;
|
fftProfile = null;
|
||||||
CacheManager.removeFromCache(this);
|
CacheManager.removeFromCache(this);
|
||||||
@@ -1937,6 +1949,24 @@ public class Sentence extends BookTreeNode implements Cacheable {
|
|||||||
return rms;
|
return rms;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public boolean isClipping(int start, int end) {
|
||||||
|
|
||||||
|
double[][] samples = getProcessedAudioData();
|
||||||
|
if (samples == null) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (int i = start; i <= end; i++) {
|
||||||
|
if (Math.abs(samples[LEFT][i]) > 0.708) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
if (Math.abs(samples[RIGHT][i]) > 0.708) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
public boolean isClipping() {
|
public boolean isClipping() {
|
||||||
if (clipping > 0) {
|
if (clipping > 0) {
|
||||||
if (clipping == 1) return false;
|
if (clipping == 1) return false;
|
||||||
@@ -1950,15 +1980,119 @@ public class Sentence extends BookTreeNode implements Cacheable {
|
|||||||
|
|
||||||
clipping = 1;
|
clipping = 1;
|
||||||
for (int i = 0; i < samples[LEFT].length; i++) {
|
for (int i = 0; i < samples[LEFT].length; i++) {
|
||||||
if (samples[LEFT][i] > 0.708) {
|
if (Math.abs(samples[LEFT][i]) > 0.708) {
|
||||||
clipping = 2;
|
clipping = 2;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
if (samples[RIGHT][i] > 0.708) {
|
if (Math.abs(samples[RIGHT][i]) > 0.708) {
|
||||||
clipping = 2;
|
clipping = 2;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public double mix(double a, double b) {
|
||||||
|
return (a + b) / 2d;
|
||||||
|
}
|
||||||
|
|
||||||
|
final int window = 500;
|
||||||
|
|
||||||
|
public double[] getWaveProfile() {
|
||||||
|
if (waveProfile != null) return waveProfile;
|
||||||
|
double[][] samples = getProcessedAudioData();
|
||||||
|
waveProfile = new double[samples[LEFT].length];
|
||||||
|
|
||||||
|
double rt = 0;
|
||||||
|
|
||||||
|
int nsamp = samples[LEFT].length;
|
||||||
|
int nbuckets = nsamp / window;
|
||||||
|
|
||||||
|
double[] buckets = new double[nbuckets + 1];
|
||||||
|
|
||||||
|
for (int i = 0; i < nsamp; i++) {
|
||||||
|
double sval = Math.abs(mix(samples[LEFT][i], samples[RIGHT][i]));
|
||||||
|
int bnum = i / window;
|
||||||
|
if (sval > buckets[bnum]) buckets[bnum] = sval;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (int i = 0; i < nsamp; i++) {
|
||||||
|
waveProfile[i] = buckets[i / window];
|
||||||
|
}
|
||||||
|
|
||||||
|
return waveProfile;
|
||||||
|
}
|
||||||
|
|
||||||
|
int findBiggestPeak() {
|
||||||
|
double[][] samples = getProcessedAudioData();
|
||||||
|
|
||||||
|
int pos = 0;
|
||||||
|
|
||||||
|
double peak = 0;
|
||||||
|
|
||||||
|
for (int i = 0; i < samples[LEFT].length; i++) {
|
||||||
|
if (Math.abs(samples[LEFT][i]) > peak) {
|
||||||
|
peak = Math.abs(samples[LEFT][i]);
|
||||||
|
pos = i;
|
||||||
|
}
|
||||||
|
if (Math.abs(samples[RIGHT][i]) > peak) {
|
||||||
|
peak = Math.abs(samples[RIGHT][i]);
|
||||||
|
pos = i;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return pos;
|
||||||
|
}
|
||||||
|
|
||||||
|
int findPreviousZero(int offset) {
|
||||||
|
double[] profile = getWaveProfile();
|
||||||
|
|
||||||
|
int pos = offset;
|
||||||
|
while (pos > 0) {
|
||||||
|
if (profile[pos] < 0.05) return pos - (window/2);
|
||||||
|
pos--;
|
||||||
|
}
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
int findNextZero(int offset) {
|
||||||
|
double[] profile = getWaveProfile();
|
||||||
|
|
||||||
|
int pos = offset;
|
||||||
|
while (pos < profile.length) {
|
||||||
|
if (profile[pos] < 0.05) return pos + (window / 2);
|
||||||
|
pos++;
|
||||||
|
}
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void autoAddPeakGainPoints() {
|
||||||
|
while (true) {
|
||||||
|
double[][] samples = getProcessedAudioData();
|
||||||
|
int pos = findBiggestPeak();
|
||||||
|
System.err.println("Biggest peak: " + pos);
|
||||||
|
if ((Math.abs(samples[LEFT][pos]) < 0.708) && (Math.abs(samples[RIGHT][pos]) < 0.708)) {
|
||||||
|
System.err.println("Not a peak!");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
int start = findPreviousZero(pos);
|
||||||
|
int end = findNextZero(pos);
|
||||||
|
if (start == -1) {
|
||||||
|
System.err.println("Unable to find previous zero");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (end == -1) {
|
||||||
|
System.err.println("Unable to find next zero");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
addGainPoint(start, 1d);
|
||||||
|
addGainPoint(pos, 1d);
|
||||||
|
addGainPoint(end, 1d);
|
||||||
|
|
||||||
|
while (isClipping(start, end)) {
|
||||||
|
adjustGainPoint(pos, -0.05);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -56,6 +56,7 @@ public class VersionChecker implements Runnable {
|
|||||||
if (Utils.s2i(installedVersion) >= Utils.s2i(availableVersion)) return;
|
if (Utils.s2i(installedVersion) >= Utils.s2i(availableVersion)) return;
|
||||||
|
|
||||||
JButton upgrade = new JButton("A new version is available.");
|
JButton upgrade = new JButton("A new version is available.");
|
||||||
|
upgrade.setFocusable(false);
|
||||||
upgrade.addActionListener(new ActionListener() {
|
upgrade.addActionListener(new ActionListener() {
|
||||||
public void actionPerformed(ActionEvent evt) {
|
public void actionPerformed(ActionEvent evt) {
|
||||||
Utils.browse(website);
|
Utils.browse(website);
|
||||||
|
|||||||
@@ -99,6 +99,7 @@ public class Waveform extends JPanel implements MouseListener, MouseMotionListen
|
|||||||
|
|
||||||
if (sentence != null) {
|
if (sentence != null) {
|
||||||
double[][] samples = sentence.getDoubleAudioData(true);
|
double[][] samples = sentence.getDoubleAudioData(true);
|
||||||
|
double[] waveProfile = sentence.getWaveProfile();
|
||||||
|
|
||||||
int num = samples[Sentence.LEFT].length;
|
int num = samples[Sentence.LEFT].length;
|
||||||
step = num / zoomFactor / w;
|
step = num / zoomFactor / w;
|
||||||
@@ -117,9 +118,13 @@ public class Waveform extends JPanel implements MouseListener, MouseMotionListen
|
|||||||
double lave = 0;
|
double lave = 0;
|
||||||
double lmax = 0;
|
double lmax = 0;
|
||||||
|
|
||||||
|
double prof = 0;
|
||||||
|
|
||||||
for (int o = 0; o < step; o++) {
|
for (int o = 0; o < step; o++) {
|
||||||
if (offset + (n * step) + o >= samples[Sentence.LEFT].length) break;
|
if (offset + (n * step) + o >= samples[Sentence.LEFT].length) break;
|
||||||
double sample = (samples[Sentence.LEFT][offset + (n * step) + o] + samples[Sentence.RIGHT][offset + (n * step) + o]) / 2d;
|
double sample = (samples[Sentence.LEFT][offset + (n * step) + o] + samples[Sentence.RIGHT][offset + (n * step) + o]) / 2d;
|
||||||
|
double asamp = waveProfile[offset + (n * step) + o];
|
||||||
|
if (asamp > prof) prof = asamp;
|
||||||
if (sample >= 0) {
|
if (sample >= 0) {
|
||||||
have += sample;
|
have += sample;
|
||||||
hcnt++;
|
hcnt++;
|
||||||
@@ -158,6 +163,12 @@ public class Waveform extends JPanel implements MouseListener, MouseMotionListen
|
|||||||
g.drawLine(n, (int)(h/2 + lmax), n, (int)(h/2 - hmax));
|
g.drawLine(n, (int)(h/2 + lmax), n, (int)(h/2 - hmax));
|
||||||
g.setColor(new Color(0, 100, 255));
|
g.setColor(new Color(0, 100, 255));
|
||||||
g.drawLine(n, (int)(h/2 + lave), n, (int)(h/2 - have));
|
g.drawLine(n, (int)(h/2 + lave), n, (int)(h/2 - have));
|
||||||
|
if (prof < 0.05d) {
|
||||||
|
g.setColor(new Color(0, 255, 0));
|
||||||
|
} else {
|
||||||
|
g.setColor(new Color(0, 100, 0));
|
||||||
|
}
|
||||||
|
g.drawLine(n, (int)(h/2 - prof * scale), n, (int)(h/2 - prof * scale));
|
||||||
}
|
}
|
||||||
|
|
||||||
g.setColor(new Color(255, 0, 0, 64));
|
g.setColor(new Color(255, 0, 0, 64));
|
||||||
|
|||||||
Reference in New Issue
Block a user