Export clean audio samples to avoid crackling sound with the Web Audio API on iOS
npm install export-web-audioffmpeg CLI installedbrew to install it easily with brew install ffmpeg#### installation
```
npm install -g export-web-audio
#### usage
`
export-web-audio
export-web-audio INPUT
export-web-audio INPUT -o
Options:
-h, --help Show this screen.
-o, --output Output file or directory
-b, --bitrate Encoding bitrate (default: 128kbps)
-q, --quiet Suppress log messages
-y, --overwrite Overwrite output files if they already exist
`
#### installation
``
npm install -S export-web-audio
#### usage
`js`
var exportWebAudio = require('export-web-audio')
exportWebAudio(options)
+ options.input
+ Input file or directory
+ default process.cwd()
+ options.output
+ Output file or directory
+ default process.cwd()
+ options.bitrate
+ Set the encoding bitrate
+ default 128
+ options.overwrite
+ Overwrite output files if they already exist
+ default false
+ options.quiet
+ Don't display any log messages
+ default false`