UNPKG

mic-ts

Version:

A simple stream wrapper for arecord (Linux (including Raspbian)) and sox (Mac/Windows). Returns a Passthrough stream object so that stream control like pause(), resume(), pipe(), etc. are all available.

6 lines 166 B
import { MicImpl } from "./Mic.js"; const mic = function mic(options = {}) { return new MicImpl(options); }; export default mic; //# sourceMappingURL=index.js.map