<div dir="ltr"><div dir="ltr"><div class="gmail_default" style="font-family:arial,helvetica,sans-serif"><br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Sat, Apr 18, 2020 at 5:49 PM Gerhard Zintel <<a href="mailto:gerhard.zintel@web.de">gerhard.zintel@web.de</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><br>
One further remark. The wave header has two length information at byte offset 5 and 41<br>
(see <a href="http://www.topherlee.com/software/pcm-tut-wavformat.html" rel="noreferrer" target="_blank">http://www.topherlee.com/software/pcm-tut-wavformat.html</a>). You can use dd like described<br>
here (<a href="https://unix.stackexchange.com/questions/214820/patching-a-binary-with-dd" rel="noreferrer" target="_blank">https://unix.stackexchange.com/questions/214820/patching-a-binary-with-dd</a>) to patch<br>
the created file newname.wav afterwards to inject the correct length information.<br></blockquote><div><br></div><div><div style="font-family:arial,helvetica,sans-serif" class="gmail_default">being pedantic just for the sake of it ....</div><div style="font-family:arial,helvetica,sans-serif" class="gmail_default"><br></div><div style="font-family:arial,helvetica,sans-serif" class="gmail_default">WAV is a subformat of the RIFF file format, which uses a set of "chunks" with a 4 byte ID and a 4 byte length for each chunk. <br></div><div style="font-family:arial,helvetica,sans-serif" class="gmail_default"><br></div><div style="font-family:arial,helvetica,sans-serif" class="gmail_default">Although it is conventional for the various chunks to come in a fairly standard order (RIFF .. WAV .. FMT), nothing about the standard requires this, and the correct way to parse any RIFF file (and hence any WAV file) is chunk by chunk. Making assumptions about byte offsets will work in the majority of cases, but will break in some.</div><div style="font-family:arial,helvetica,sans-serif" class="gmail_default"><br></div><div style="font-family:arial,helvetica,sans-serif" class="gmail_default">In addition, the length information at byte 5 (which actually is constant, since that's the outermost RIFF chunk, is the length of the entire file, not the WAV data length.<br></div><br></div></div></div>