We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2681128 commit aaec00bCopy full SHA for aaec00b
1 file changed
src/Spectrogram.Tests/FileFormat.cs
@@ -10,7 +10,7 @@ class FileFormat
10
[Test]
11
public void Test_Save_Format()
12
{
13
- (int sampleRate, double[] audio, _) = WavFile.ReadStereo("../../../../../data/cant-do-that-44100.wav");
+ (int sampleRate, double[] audio) = WavFile.ReadMono("../../../../../data/cant-do-that-44100.wav");
14
int fftSize = 1 << 12;
15
var spec = new Spectrogram(sampleRate, fftSize, stepSize: 700, maxFreq: 2000);
16
spec.SetWindow(FftSharp.Window.Hanning(fftSize / 3)); // sharper window than typical
0 commit comments