编排新增音频分类,支持朗读文本、播放音频、录制音频、播放系统音效

This commit is contained in:
fofolee
2025-01-10 00:07:41 +08:00
parent 378ae7f92f
commit f9a1aefff6
10 changed files with 539 additions and 4 deletions

View File

@@ -0,0 +1,9 @@
const speech = require("./speech");
const media = require("./media");
const record = require("./record");
module.exports = {
speech,
media,
...record,
};