если речь идёт о голосовом управлении то зачем тебе самому с FLAC заморачиваться?
чем input speech в html5 неугодил ?
<!DOCTYPE HTML>
<html>
<head> </head>
<body id="main">
произнесите "красный"
<input id="speech" type="text" speech="speech" x-webkit-speech="x-webkit-speech" onspeechchange="processspeech();" onwebkitspeechchange="processspeech();" />
<script type="text/javascript">
function processspeech()
{
var speechInput=document.getElementById("speech").value;
switch ( speechInput){
case "красный":
alert("вы выбрали крсный цвет");
break;
}
}
</script>
</body>
</html>