WAV file output max length #1053
-
When streaming to WAVEncoder I am finding a maximum audio capture of 4 seconds using both copier.copyN() and the timeout counter method. Shorter captures to file are done by reducing counter and copyN() value. Is there a maximum audio length supported by WAVencoder, or any workarounds that I can try to extend the audio length captured? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
WAV files are limited to 4GB in size as they have a 32bit file size header. If you don't specify a length, the header is filled with this 4GB limit and the effective play length is just determined by the effective file size. What makes you think that there is a 4 seconds limit ? You just need to have enough space on the target medium and make sure that the data is saved properly... |
Beta Was this translation helpful? Give feedback.
WAV files are limited to 4GB in size as they have a 32bit file size header. If you don't specify a length, the header is filled with this 4GB limit and the effective play length is just determined by the effective file size.
What makes you think that there is a 4 seconds limit ?
You just need to have enough space on the target medium and make sure that the data is saved properly...