UNPKG

@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)

13 lines 367 B
export 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}`); } }; //# sourceMappingURL=encodingToBitDepth.js.map