@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)
14 lines • 708 B
TypeScript
/**
* @experimental This feature is experimental and currently only available on Android.
* The API may change in future versions. The web implementation is a placeholder.
*/
import { ExtractMelSpectrogramOptions, MelSpectrogram } from './AudioAnalysis.types';
/**
* Extracts a mel spectrogram from audio data
*
* @experimental This feature is experimental and currently only available on Android.
* The iOS implementation will throw an "UNSUPPORTED_PLATFORM" error.
* The web implementation is a placeholder that returns dummy data.
*/
export declare function extractMelSpectrogram(options: ExtractMelSpectrogramOptions): Promise<MelSpectrogram>;
//# sourceMappingURL=extractMelSpectrogram.d.ts.map