I need to create a WAV file in PHP that consists of four repetitions of a single WAV (ie. append the uploaded file to itself 3 times). Can anyone suggest a simple way of repeating the data portion of the wav file?
I've tried using this script to join the file to itself four times, but the resulting file always seems to consist of a repetition of only the first 0.2s or so (the exact length seems to vary per file) of the file. Unfortunately, I don't know enough about the WAV file format to be able to figure out what's wrong with this script.
The WAV files we're using are always Stereo 16-bit 44.1kHz Windows PCM format, so it occurred to me it might be possible to write a much simpler script that just duplicates (quadruplicates?) the audio portion of the file and modifies only the 'size' portion of the header.
Any suggestions / help would be very much appreciated!