FunAudioLLM / SenseVoice

Multilingual Voice Understanding Model
https://funaudiollm.github.io/
Other
2.61k stars 249 forks source link

Is there a way to return the word timestamp of a sentence? #92

Open CuiRobert opened 1 month ago

CuiRobert commented 1 month ago

Is there a way to return the word timestamp of a sentence?

example: input sentence: "Hello readers,welcome!" output: [{ "word": "Hello", "start_time": 0.02, "end_time": 0.36, }, { "word": "readers", "start_time": 0.36, "end_time": 0.855, }, { "word": ",", "start_time": 0.855, "end_time": 1.155, "type": "mark" }, { "word": "welcome", "start_time": 1.155, "end_time": 1.665, }, { "word": "!", "start_time": 1.665, "end_time": 1.955, } ]

2721031254a commented 2 weeks ago

raise the same question