Skip to content

Commit c59ece5

Browse files
authored
Merge pull request #87 from weefuzzy/fix/novelty-mfcc-bandwidth
Amend upper frequency limit of mel bands in NoveltySlice to 20kHz
2 parents 0935435 + 03710d8 commit c59ece5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/clients/rt/NoveltySliceClient.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ class NoveltySliceClient : public FluidBaseClient,
111111
else if (feature == 1)
112112
{
113113
mBands.resize(40);
114-
mMelBands.init(20, 2000, 40, get<kFFT>().frameSize(), sampleRate(),
114+
mMelBands.init(20, 20e3, 40, get<kFFT>().frameSize(), sampleRate(),
115115
get<kFFT>().winSize());
116116
mDCT.init(40, 13);
117117
nDims = 13;

0 commit comments

Comments
 (0)