<div dir="ltr"><div><br>
On Thu, Apr 13, 2023 at 3:50 PM Muni Sekhar <<a href="mailto:munisekharrms@gmail.com" target="_blank">munisekharrms@gmail.com</a>> wrote:<br>
><br>
> Hi all,<br>
><br>
> I recorded the silence on the default audio card by running "arecord<br>
> -d 5 test.wav."<br>
><br>
> Once it exited, I checked the contents by running "hexdump test.wav,"<br>
> and I see that silence is recorded as a sequence of 0x80 instead of<br>
> 0x00.<br>
><br>
> 0000000 4952 4646 0024 8000 4157 4556 6d66 2074<br>
> 0000010 0010 0000 0001 0001 1f40 0000 1f40 0000<br>
> 0000020 0001 0008 6164 6174 0000 8000 8080 8080<br>
> 0000030 8080 8080 8080 8080 8080 8080 8080 8080<br>
> 0000040 8080 8080 8080 8080 8080 8080 8080 8080<br>
> ...<br>
><br>
> What might be the reason for silence being recorded as 0x80 instead of 0x0?<br>
><br>
><br>
> --<br>
> Thanks,<br>
> Sekhar</div><div dir="auto"><br></div><div dir="auto">This is what I found after Googling a bit:</div><div dir="auto">Since you didn't specify a format, arecord defaults to 8 bit format (U8).<br>Being unsigned, a negative value for maximum negative amplitude is impossible. Therefore the value is given a bias of 128,<br>making 0 the maximum negative amplitude, 255 the maximum positive, and 128 the center point (or silence).<br><br>Best Regards,<br>Luke<br><br><br>
<br>
</div>
</div>