%Inputing wave file reversing and sending back out

[input,w,bit]=wavread('jpforward.wav'); %inputs wave

backwards = flipud(input);  %writes the reverse data into a new vector

wavplay(input,w)
wavplay(backwards,w)                    %playing reversed wav
wavplay(backwards,w*0.5)                %playing reversed wav at half speed 
wavwrite(backwards,w,bit,'Backwards.wav');      %making the reversed vector data a wave file
wavwrite(backwards,w*0.5,bit,'halfBackwards.wav'); %"    "  half  " " ect..


% Don't think there is a hidden message, sounded like gibberish.

Alumni Liaison

Ph.D. on Applied Mathematics in Aug 2007. Involved on applications of image super-resolution to electron microscopy

Francisco Blanco-Silva