- From: Bjorn Bringert <bringert@google.com>
- Date: Thu, 25 Aug 2011 18:28:07 +0100
- To: Michael Bodell <mbodell@microsoft.com>
- Cc: "public-xg-htmlspeech@w3.org" <public-xg-htmlspeech@w3.org>
Proposal for SpeechInputResult:
// Recognition result as EMMA + simple N-best list
interface SpeechInputResult {
readonly attribute Document resultEMMAXML;
readonly attribute DOMString resultEMMAText;
readonly attribute unsigned long length;
getter SpeechInputResultAlternative item(in unsigned long index);
};
// Item in N-best list
interface SpeechInputAlternative {
readonly attribute DOMString utterance;
readonly attribute float confidence;
readonly attribute any interpretation;
};
On Thu, Aug 25, 2011 at 12:51 PM, Michael Bodell <mbodell@microsoft.com> wrote:
> For the Web API call we will discuss the attached document. This represents
> mostly summarization and collation of the work that the API group has done
> in the past 2 months since the face to face. I’ve attempted to mostly take
> what people had sent in to the list, plus what we’ve discussed, and fuse it
> into one document. There are still a lot of open questions both large and
> structural (like how do a few of the sections interact with each other) as
> well as minute (like are the names correct and what should the defaults be).
--
Bjorn Bringert
Google UK Limited, Registered Office: Belgrave House, 76 Buckingham
Palace Road, London, SW1W 9TQ
Registered in England Number: 3977902
Received on Thursday, 25 August 2011 17:28:40 UTC