Как установить OutputFormat.simple в OutputFormat.detailed с использованием target-c в Microsoft когнитивной речи Lib?

wrapInner multiple tag content


function wilWrapInner(el, wrapInner) {
  var _el = [].slice.call(el.children);
  var fragment = document.createDocumentFragment();
  el.insertAdjacentHTML('afterbegin', wrapInner);
  var _wrap = el.children[0];
  for (var i = 0, len = _el.length; i < len; i++) {
    fragment.appendChild(_el[i]);
  }
  _wrap.appendChild(fragment);
}

Ссылка Демо Jsbin

0
задан Yoseph Wijaya 27 March 2019 в 07:07
поделиться

1 ответ

SPXSpeechConfiguration *speechConfig = [[SPXSpeechConfiguration alloc] initWithSubscription:speechKey region:serviceRegion];

[speechConfig setPropertyTo:@"True" byId:SPXSpeechServiceResponseRequestDetailedResultTrueFalse];

После проб и ошибок, по-видимому, SPXSpeechServiceResponseRequestDetailedResultTrueFalse уже реализовано, так как он возвращает детали после установки свойства True. может быть, документация должна изменить метод комментария, который its already implemented с некоторыми шагами, как его настроить, вместо not implemented yet.

0
ответ дан Yoseph Wijaya 27 March 2019 в 07:07
поделиться
Другие вопросы по тегам:

Похожие вопросы: