@miklermpz/expo-audio-studio
Version:
This is a forked version of the original [expo-audio-studio](https://github.com/deeeed/expo-audio-stream/blob/main/packages/expo-audio-studio/README.md) by Arthur Breton <abreton@siteed.net> (https://github.com/deeeed)
17 lines • 523 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.encodingToBitDepth = void 0;
const encodingToBitDepth = ({ encoding, }) => {
switch (encoding) {
case 'pcm_32bit':
return 32;
case 'pcm_16bit':
return 16;
case 'pcm_8bit':
return 8;
default:
throw new Error(`Unsupported encoding type: ${encoding}`);
}
};
exports.encodingToBitDepth = encodingToBitDepth;
//# sourceMappingURL=encodingToBitDepth.js.map