MATLAB: Does audiowrite modify the data frames slightly

audioreadaudiowrite

I have a vector that I want to write to an audio file (any format, .wav or .mp4 or any other audio format). Afterwards, I want the exact decimal floating point values back when I read that audio file later. It is a project about audio stenography. Problem is that reading that audio file gives values that are slightly different. I want exact. I cannot even truncate them to any fixed length because different elements of my vector have different number of digits in floating point. Here is a brief version of the code I am having trouble with:
>> Fs= 8000
>> my_vector= [-0.74446 , 0.009]
>> audiowrite('newfile.wav', my_vector, Fs)
>> recovered_vector= audioread('newfile.wav')
recovered_vector =
-0.744476318359375
0.008972167968750
I wanted the same values back, -0.74446 and 0.009. I tried with different audio formats (.og, .ogg, .mp4, .wav). wav was giving closest results but they are still not exact. I also tried with changing the image quality parameter with .ogg (it does not work with .wav) but it did not help.
I think its a really basic thing that I am missing here….Any help would be much appreciated.
Thanks.

Best Answer

For MP4 and OGG, you cannot expect sample accuracy because they are lossy compression formats.
For WAV, the difference is because the audiowrite call writes the data to the WAV file as 16-bit integers and not double precision. So, there is a loss of precision going from double -> int16 -> double.
Try
audiowrite('myfile.wav', my_vector, 44100, 'BitsPerSample', 64)
For FLAC, the maximum supported bits per sample is 24 which will again result in a loss of precision because of double -> 24-bit -> double conversion.
Related Question