Skip to content

Commit

Permalink
Merge pull request #87 from weefuzzy/fix/novelty-mfcc-bandwidth
Browse files Browse the repository at this point in the history
Amend upper frequency limit of mel bands in NoveltySlice to 20kHz
  • Loading branch information
weefuzzy authored Feb 2, 2022
2 parents 0935435 + 03710d8 commit c59ece5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/clients/rt/NoveltySliceClient.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ class NoveltySliceClient : public FluidBaseClient,
else if (feature == 1)
{
mBands.resize(40);
mMelBands.init(20, 2000, 40, get<kFFT>().frameSize(), sampleRate(),
mMelBands.init(20, 20e3, 40, get<kFFT>().frameSize(), sampleRate(),
get<kFFT>().winSize());
mDCT.init(40, 13);
nDims = 13;
Expand Down

0 comments on commit c59ece5

Please sign in to comment.