Add alsa-based streaming ASR example for sense voice. (#2207)

This commit is contained in:
Fangjun Kuang
2025-05-13 19:08:09 +08:00
committed by GitHub
parent 9a0e16f092
commit fdda292d5a
6 changed files with 273 additions and 6 deletions

View File

@@ -45,10 +45,11 @@ class SherpaDisplay {
private:
static void ClearScreen() {
#ifdef _MSC_VER
system("cls");
auto ret = system("cls");
#else
system("clear");
auto ret = system("clear");
#endif
(void)ret;
}
static std::string GetCurrentDateTime() {