in reply to Re: How to compare 2 wav files.
in thread How to compare 2 wav files.
By using php it is possible please try this one
<?php
$audio1 = file_get_contents('audio1.wav');
$audio2 = file_get_contents('audio2.wav');
if($audio1 == $audio2)
echo "true";
else
echo "false";
?>