formantanalyzer
Version:
Extract formant features such as frequency, power, energy, and bandwidth of formants at syllable or word level from audio sources in a web browser using WebAudio API.
29 lines (25 loc) • 473 B
JavaScript
const path = require('path');
module.exports = {
entry: "./src/AudioLauncher.js",
output: {
filename: "index.js",
path: path.resolve(__dirname, ""),
library: "FormantAnalyzer",
libraryTarget: 'umd',
globalObject: 'this',
},
mode : 'production',
};
/*
production
development
mode : 'production',
node: {
fs: "empty"
}
mode : 'development',
devtool: 'inline-source-map',
node: {
fs: "empty"
}
*/