hypnosound 1.1.0 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "hypnosound",
3
3
  "type": "module",
4
- "version": "1.1.0",
4
+ "version": "1.2.0",
5
5
  "description": "A small library for analyzing audio",
6
6
  "main": "index.js",
7
7
  "scripts": {
@@ -1,7 +1,7 @@
1
1
  import mu from '../utils/mu.js'
2
2
  export default function spectralKurtosis(fft) {
3
3
  const value = calculateSpectralKurtosis(fft) // Process FFT data
4
- return value / 10
4
+ return value / 1000
5
5
  }
6
6
 
7
7
  function calculateSpectralKurtosis(fftData) {