Sound manipulation

A song can be seen as an element of a linear space. We can apply transformations on a song. Here is an example, where the song is reversed. This reflection is a linear transformation.
Sound MP3, WAV Reverse Sound MP3, WAV
The sound clips were taken from the following great smash hit video: "I love to row reduce"!.

Here is the Mathematica code which reverses a sound:

A = Audio["ilovetorowreduce.wav"];
B = AudioData[A]; U = B[[1]]; V = B[[2]]; 
B=Sound[ SampledSoundList[{Reverse[U],Reverse[V]},42000]]