├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── bun.lockb ├── examples ├── browser-demo.html ├── browser-local-demo.html ├── browser-standalone.html └── test-constructor.html ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── scripts ├── build-browser.ts ├── build.ts ├── test-all-formats.ts ├── test.ts └── timezone.ts ├── src ├── browser │ └── EdgeTTS.browser.ts ├── cli │ └── edge-tts.ts ├── commands │ ├── SynthesizeCommand.ts │ └── VoiceListCommand.ts ├── config │ └── constants.ts ├── index.ts └── services │ └── EdgeTTS.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresayac/edge-tts/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresayac/edge-tts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresayac/edge-tts/HEAD/README.md -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresayac/edge-tts/HEAD/bun.lockb -------------------------------------------------------------------------------- /examples/browser-demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresayac/edge-tts/HEAD/examples/browser-demo.html -------------------------------------------------------------------------------- /examples/browser-local-demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresayac/edge-tts/HEAD/examples/browser-local-demo.html -------------------------------------------------------------------------------- /examples/browser-standalone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresayac/edge-tts/HEAD/examples/browser-standalone.html -------------------------------------------------------------------------------- /examples/test-constructor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresayac/edge-tts/HEAD/examples/test-constructor.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresayac/edge-tts/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresayac/edge-tts/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | ignoredBuiltDependencies: 2 | - esbuild 3 | -------------------------------------------------------------------------------- /scripts/build-browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresayac/edge-tts/HEAD/scripts/build-browser.ts -------------------------------------------------------------------------------- /scripts/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresayac/edge-tts/HEAD/scripts/build.ts -------------------------------------------------------------------------------- /scripts/test-all-formats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresayac/edge-tts/HEAD/scripts/test-all-formats.ts -------------------------------------------------------------------------------- /scripts/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresayac/edge-tts/HEAD/scripts/test.ts -------------------------------------------------------------------------------- /scripts/timezone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresayac/edge-tts/HEAD/scripts/timezone.ts -------------------------------------------------------------------------------- /src/browser/EdgeTTS.browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresayac/edge-tts/HEAD/src/browser/EdgeTTS.browser.ts -------------------------------------------------------------------------------- /src/cli/edge-tts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresayac/edge-tts/HEAD/src/cli/edge-tts.ts -------------------------------------------------------------------------------- /src/commands/SynthesizeCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresayac/edge-tts/HEAD/src/commands/SynthesizeCommand.ts -------------------------------------------------------------------------------- /src/commands/VoiceListCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresayac/edge-tts/HEAD/src/commands/VoiceListCommand.ts -------------------------------------------------------------------------------- /src/config/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresayac/edge-tts/HEAD/src/config/constants.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresayac/edge-tts/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/services/EdgeTTS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresayac/edge-tts/HEAD/src/services/EdgeTTS.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresayac/edge-tts/HEAD/tsconfig.json --------------------------------------------------------------------------------