FreddyJohn
FreddyJohn
Agreed! Please do this. It is easier to create my own program than use this library
http://soundfile.sapp.org/doc/WaveFormat/ public static byte[] wavHeader( long totalAudioLen, long totalDataLen, long sampleRate, int channels,byte bitPerSample) { // >> shift operators for endianness long byteRate=sampleRate*channels*(bitPerSample/8); byte[] header = new byte[44]; header[0] =...
> @FrankIceBass Fixed-size collections, such as arrays, are not supported since EF needs to add elements to them. How is it not possible to take a fixed sized array and...
It wouldn't be bad if there was concise documentation in one place. Here is where the issue of googles scattered documentation structure really shows it's flaws. Some of the information...