unity change audio clip tempo and keep pitch
// define a field
AudioSource audioSource;
// ... in method:
float newSpeed = 1.2f;
audioSource.pitch = newSpeed;
// use with mixer group
audioSource.outputAudioMixerGroup.audioMixer.SetFloat("Pitch", 1f / newSpeed);