react-native-track-player
Version:
A fully fledged audio module created for music apps
15 lines (14 loc) • 357 B
TypeScript
export declare enum PitchAlgorithm {
/**
* A high-quality time pitch algorithm that doesn’t perform pitch correction.
* */
Linear,
/**
* A highest-quality time pitch algorithm that’s suitable for music.
**/
Music,
/**
* A modest quality time pitch algorithm that’s suitable for voice.
**/
Voice
}