mirror of
https://github.com/modelscope/FunASR
synced 2025-09-15 14:48:36 +08:00
json stamp_sents
This commit is contained in:
parent
2396397169
commit
6be2975020
@ -83,8 +83,15 @@ nlohmann::json handle_result(FUNASR_RESULT result) {
|
|||||||
|
|
||||||
std::string tmp_stamp_sents = FunASRGetStampSents(result);
|
std::string tmp_stamp_sents = FunASRGetStampSents(result);
|
||||||
if (tmp_stamp_sents != "") {
|
if (tmp_stamp_sents != "") {
|
||||||
LOG(INFO) << "offline stamp_sents : " << tmp_stamp_sents;
|
try{
|
||||||
jsonresult["stamp_sents"] = tmp_stamp_sents;
|
nlohmann::json json_stamp = nlohmann::json::parse(tmp_stamp_sents);
|
||||||
|
LOG(INFO) << "offline stamp_sents : " << json_stamp;
|
||||||
|
jsonresult["stamp_sents"] = json_stamp;
|
||||||
|
}catch (std::exception const &e)
|
||||||
|
{
|
||||||
|
LOG(ERROR)<< tmp_stamp_sents << e.what();
|
||||||
|
jsonresult["stamp_sents"] = "";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return jsonresult;
|
return jsonresult;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user