Hi all, I am playing an audio file. I read it as a byte[] and then I need to normalize the audio by putting values into range of [-1,1]. I want to then put each flo
byte[]
This works:
float number = 0.43f; byte[] array = BitConverter.GetBytes(number);
What does not work for you?