Skip to content

Commit

Permalink
优化FrequencyHistogramView扩展增强0-10khz语音部分的显示
Browse files Browse the repository at this point in the history
  • Loading branch information
xiangyuecn committed Jan 14, 2020
1 parent 2a609b7 commit d2a4785
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions assets/npm-home/hash-history.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
[
{
"sha1": "2c9728442cfe5e6ba97e73fff21dee502e24f9e5",
"time": "2020-1-14 18:20:47"
},
{
"sha1": "bad5a11c405b2766887f5a68bab7c0ce6ea14013",
"time": "2020-1-14 17:40:50"
Expand All @@ -14,9 +18,5 @@
{
"sha1": "49a3e316c57542696a81f0d413ffe9c9ea08053a",
"time": "2020-1-10 17:05:41"
},
{
"sha1": "226d35b7411af5c504cea70625413f764eff07d5",
"time": "2020-1-10 13:44:43"
}
]
2 changes: 1 addition & 1 deletion dist/extensions/frequency.histogram.view.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/extensions/frequency.histogram.view.js
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ fn.prototype=FrequencyHistogramView.prototype={
//10khz以上
fftIdx+=fftSizeStep2;
};
var end=Math.floor(fftIdx);
var end=Math.min(Math.ceil(fftIdx),fftSize);


//参考AudioGUI.java .drawHistogram方法
Expand Down

0 comments on commit d2a4785

Please sign in to comment.