const { toVoice, voices } = require("edge-tts-nodejs") const path = require("path") // Export different formats toVoice("你好世界", path.resolve('./wav/helloworld.mp3')) toVoice("你好世界", path.resolve('./wav/helloworld.wav')) // Use voice packages toVoice("你好", path.resolve...