Gateway to the IBM Speech To Text (STT) cloud service > com.ibm.streamsx.sttgateway 2.2.3 > com.ibm.streamsx.sttgateway.watson > Utils.spl
Function hourMinuteSecondMillisec
build a string from a timestamp with format <hour>:<minute>:<second>.<millisecond>
This type STTResult_t is the basic STT result type with essential transcription results.
STTResult_t = boolean transcriptionCompleted, rstring sttErrorMessage, boolean finalizedUtterance, int32 utteranceNumber, float64 confidence, float64 utteranceStartTime, float64 utteranceEndTime, rstring utteranceText, rstring conversationId;
This type STTAllResult_t is the STT result type with all transcription results.
STTAllResult_t = boolean transcriptionCompleted, rstring sttErrorMessage, boolean finalizedUtterance, int32 utteranceNumber, float64 confidence, float64 utteranceStartTime, float64 utteranceEndTime, rstring utteranceText, list<rstring> utteranceAlternatives, list<rstring> utteranceWords, list<float64> utteranceWordsConfidences, list<float64> utteranceWordsStartTimes, list<float64> utteranceWordsEndTimes, list<list<rstring>> wordAlternatives, list<list<float64>> wordAlternativesConfidences, list<float64> wordAlternativesStartTimes, list<float64> wordAlternativesEndTimes, list<int32> utteranceWordsSpeakers, list<float64> utteranceWordsSpeakersConfidences, list<tuple<float64 startTime, int32 speaker, float64 confidence>> utteranceWordsSpeakerUpdates, map<rstring, list<tuple<float64 startTime, float64 endTime, float64 confidence>>> keywordsSpottingResults, rstring conversationId;