├── .editorconfig ├── .github └── workflows │ └── pages.yml ├── .gitignore ├── LICENSE ├── README.md ├── VoicevoxEngineSharp.sln └── src ├── API ├── resources │ └── .gitkeep └── src │ ├── API.csproj │ ├── Models │ ├── AccentPhrase.cs │ ├── AudioQuery.cs │ ├── Mora.cs │ └── Speaker.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── appsettings.Development.json │ └── appsettings.json ├── Core.Native └── src │ ├── Acoustic │ └── Native │ │ ├── Core.cs │ │ └── CoreUnmanaged.cs │ ├── Core.Native.csproj │ └── Language │ └── Providers │ └── FullContextProvider.cs ├── Core ├── .gitignore ├── src │ ├── Acoustic │ │ ├── Models │ │ │ ├── AccentPhrase.cs │ │ │ ├── AudioQuery.cs │ │ │ ├── BasePhoneme.cs │ │ │ ├── IBasePhoneme.cs │ │ │ ├── JvsPhoneme.cs │ │ │ ├── Mora.cs │ │ │ ├── OjtPhoneme.cs │ │ │ ├── PhonemeList.cs │ │ │ └── SamplingData.cs │ │ ├── Native │ │ │ └── IAcousticDNNLibrary.cs │ │ └── Usecases │ │ │ └── SynthesisEngine.cs │ ├── AssemblyInfo.cs │ ├── Core.csproj │ ├── Language │ │ ├── Domains │ │ │ └── Romkan │ │ │ │ ├── LICENSE │ │ │ │ └── Romkan.cs │ │ ├── Extensions │ │ │ ├── LINQExtensions.cs │ │ │ ├── MoraExtensions.cs │ │ │ └── PhonemeExtensions.cs │ │ ├── Models │ │ │ ├── AccentPhrase.cs │ │ │ ├── BreathGroup.cs │ │ │ ├── Mora.cs │ │ │ ├── Phoneme.cs │ │ │ └── Utterance.cs │ │ ├── Providers │ │ │ └── IFullContextProvider.cs │ │ └── Usecases │ │ │ └── TextToUtterance.cs │ └── Usecases │ │ └── Synthesis.cs └── test │ ├── Core.Test.csproj │ ├── MoraExtensionTest.cs │ └── PhonemeTest.cs ├── WasmWeb.JS ├── README.md ├── core │ ├── .gitignore │ ├── package.json │ ├── pnpm-lock.yaml │ ├── src │ │ └── index.ts │ ├── tsconfig.json │ └── vite.config.ts ├── inference │ ├── .gitignore │ ├── package.json │ ├── src │ │ └── index.ts │ ├── tsconfig.json │ └── vite.config.ts ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml └── web-sample │ ├── .gitignore │ ├── README.md │ ├── eslint.config.js │ ├── index.html │ ├── package.json │ ├── src │ ├── App.tsx │ └── main.tsx │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts └── WasmWeb └── src ├── .gitignore ├── IOHelper.cs ├── Models ├── AccentPhrase.cs ├── AudioQuery.cs └── Mora.cs ├── OnnxInterop.cs ├── Program.cs ├── PromiseArrayHelper.cs ├── Properties ├── AssemblyInfo.cs └── launchSettings.json ├── SynthesisExports.cs ├── WasmWeb.csproj └── types └── .gitkeep /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/.github/workflows/pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/README.md -------------------------------------------------------------------------------- /VoicevoxEngineSharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/VoicevoxEngineSharp.sln -------------------------------------------------------------------------------- /src/API/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/API/src/API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/API/src/API.csproj -------------------------------------------------------------------------------- /src/API/src/Models/AccentPhrase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/API/src/Models/AccentPhrase.cs -------------------------------------------------------------------------------- /src/API/src/Models/AudioQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/API/src/Models/AudioQuery.cs -------------------------------------------------------------------------------- /src/API/src/Models/Mora.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/API/src/Models/Mora.cs -------------------------------------------------------------------------------- /src/API/src/Models/Speaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/API/src/Models/Speaker.cs -------------------------------------------------------------------------------- /src/API/src/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/API/src/Program.cs -------------------------------------------------------------------------------- /src/API/src/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/API/src/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/API/src/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/API/src/appsettings.Development.json -------------------------------------------------------------------------------- /src/API/src/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/API/src/appsettings.json -------------------------------------------------------------------------------- /src/Core.Native/src/Acoustic/Native/Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/Core.Native/src/Acoustic/Native/Core.cs -------------------------------------------------------------------------------- /src/Core.Native/src/Acoustic/Native/CoreUnmanaged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/Core.Native/src/Acoustic/Native/CoreUnmanaged.cs -------------------------------------------------------------------------------- /src/Core.Native/src/Core.Native.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/Core.Native/src/Core.Native.csproj -------------------------------------------------------------------------------- /src/Core.Native/src/Language/Providers/FullContextProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/Core.Native/src/Language/Providers/FullContextProvider.cs -------------------------------------------------------------------------------- /src/Core/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/Core/.gitignore -------------------------------------------------------------------------------- /src/Core/src/Acoustic/Models/AccentPhrase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/Core/src/Acoustic/Models/AccentPhrase.cs -------------------------------------------------------------------------------- /src/Core/src/Acoustic/Models/AudioQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/Core/src/Acoustic/Models/AudioQuery.cs -------------------------------------------------------------------------------- /src/Core/src/Acoustic/Models/BasePhoneme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/Core/src/Acoustic/Models/BasePhoneme.cs -------------------------------------------------------------------------------- /src/Core/src/Acoustic/Models/IBasePhoneme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/Core/src/Acoustic/Models/IBasePhoneme.cs -------------------------------------------------------------------------------- /src/Core/src/Acoustic/Models/JvsPhoneme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/Core/src/Acoustic/Models/JvsPhoneme.cs -------------------------------------------------------------------------------- /src/Core/src/Acoustic/Models/Mora.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/Core/src/Acoustic/Models/Mora.cs -------------------------------------------------------------------------------- /src/Core/src/Acoustic/Models/OjtPhoneme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/Core/src/Acoustic/Models/OjtPhoneme.cs -------------------------------------------------------------------------------- /src/Core/src/Acoustic/Models/PhonemeList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/Core/src/Acoustic/Models/PhonemeList.cs -------------------------------------------------------------------------------- /src/Core/src/Acoustic/Models/SamplingData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/Core/src/Acoustic/Models/SamplingData.cs -------------------------------------------------------------------------------- /src/Core/src/Acoustic/Native/IAcousticDNNLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/Core/src/Acoustic/Native/IAcousticDNNLibrary.cs -------------------------------------------------------------------------------- /src/Core/src/Acoustic/Usecases/SynthesisEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/Core/src/Acoustic/Usecases/SynthesisEngine.cs -------------------------------------------------------------------------------- /src/Core/src/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.CompilerServices; 2 | [assembly: InternalsVisibleTo("Core.Test")] 3 | -------------------------------------------------------------------------------- /src/Core/src/Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/Core/src/Core.csproj -------------------------------------------------------------------------------- /src/Core/src/Language/Domains/Romkan/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/Core/src/Language/Domains/Romkan/LICENSE -------------------------------------------------------------------------------- /src/Core/src/Language/Domains/Romkan/Romkan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/Core/src/Language/Domains/Romkan/Romkan.cs -------------------------------------------------------------------------------- /src/Core/src/Language/Extensions/LINQExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/Core/src/Language/Extensions/LINQExtensions.cs -------------------------------------------------------------------------------- /src/Core/src/Language/Extensions/MoraExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/Core/src/Language/Extensions/MoraExtensions.cs -------------------------------------------------------------------------------- /src/Core/src/Language/Extensions/PhonemeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/Core/src/Language/Extensions/PhonemeExtensions.cs -------------------------------------------------------------------------------- /src/Core/src/Language/Models/AccentPhrase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/Core/src/Language/Models/AccentPhrase.cs -------------------------------------------------------------------------------- /src/Core/src/Language/Models/BreathGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/Core/src/Language/Models/BreathGroup.cs -------------------------------------------------------------------------------- /src/Core/src/Language/Models/Mora.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/Core/src/Language/Models/Mora.cs -------------------------------------------------------------------------------- /src/Core/src/Language/Models/Phoneme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/Core/src/Language/Models/Phoneme.cs -------------------------------------------------------------------------------- /src/Core/src/Language/Models/Utterance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/Core/src/Language/Models/Utterance.cs -------------------------------------------------------------------------------- /src/Core/src/Language/Providers/IFullContextProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/Core/src/Language/Providers/IFullContextProvider.cs -------------------------------------------------------------------------------- /src/Core/src/Language/Usecases/TextToUtterance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/Core/src/Language/Usecases/TextToUtterance.cs -------------------------------------------------------------------------------- /src/Core/src/Usecases/Synthesis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/Core/src/Usecases/Synthesis.cs -------------------------------------------------------------------------------- /src/Core/test/Core.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/Core/test/Core.Test.csproj -------------------------------------------------------------------------------- /src/Core/test/MoraExtensionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/Core/test/MoraExtensionTest.cs -------------------------------------------------------------------------------- /src/Core/test/PhonemeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/Core/test/PhonemeTest.cs -------------------------------------------------------------------------------- /src/WasmWeb.JS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/WasmWeb.JS/README.md -------------------------------------------------------------------------------- /src/WasmWeb.JS/core/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/WasmWeb.JS/core/.gitignore -------------------------------------------------------------------------------- /src/WasmWeb.JS/core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/WasmWeb.JS/core/package.json -------------------------------------------------------------------------------- /src/WasmWeb.JS/core/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/WasmWeb.JS/core/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/WasmWeb.JS/core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/WasmWeb.JS/core/src/index.ts -------------------------------------------------------------------------------- /src/WasmWeb.JS/core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/WasmWeb.JS/core/tsconfig.json -------------------------------------------------------------------------------- /src/WasmWeb.JS/core/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/WasmWeb.JS/core/vite.config.ts -------------------------------------------------------------------------------- /src/WasmWeb.JS/inference/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/WasmWeb.JS/inference/.gitignore -------------------------------------------------------------------------------- /src/WasmWeb.JS/inference/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/WasmWeb.JS/inference/package.json -------------------------------------------------------------------------------- /src/WasmWeb.JS/inference/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/WasmWeb.JS/inference/src/index.ts -------------------------------------------------------------------------------- /src/WasmWeb.JS/inference/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/WasmWeb.JS/inference/tsconfig.json -------------------------------------------------------------------------------- /src/WasmWeb.JS/inference/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/WasmWeb.JS/inference/vite.config.ts -------------------------------------------------------------------------------- /src/WasmWeb.JS/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/WasmWeb.JS/package.json -------------------------------------------------------------------------------- /src/WasmWeb.JS/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/WasmWeb.JS/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/WasmWeb.JS/pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/WasmWeb.JS/pnpm-workspace.yaml -------------------------------------------------------------------------------- /src/WasmWeb.JS/web-sample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/WasmWeb.JS/web-sample/.gitignore -------------------------------------------------------------------------------- /src/WasmWeb.JS/web-sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/WasmWeb.JS/web-sample/README.md -------------------------------------------------------------------------------- /src/WasmWeb.JS/web-sample/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/WasmWeb.JS/web-sample/eslint.config.js -------------------------------------------------------------------------------- /src/WasmWeb.JS/web-sample/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/WasmWeb.JS/web-sample/index.html -------------------------------------------------------------------------------- /src/WasmWeb.JS/web-sample/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/WasmWeb.JS/web-sample/package.json -------------------------------------------------------------------------------- /src/WasmWeb.JS/web-sample/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/WasmWeb.JS/web-sample/src/App.tsx -------------------------------------------------------------------------------- /src/WasmWeb.JS/web-sample/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/WasmWeb.JS/web-sample/src/main.tsx -------------------------------------------------------------------------------- /src/WasmWeb.JS/web-sample/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/WasmWeb.JS/web-sample/tsconfig.app.json -------------------------------------------------------------------------------- /src/WasmWeb.JS/web-sample/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/WasmWeb.JS/web-sample/tsconfig.json -------------------------------------------------------------------------------- /src/WasmWeb.JS/web-sample/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/WasmWeb.JS/web-sample/tsconfig.node.json -------------------------------------------------------------------------------- /src/WasmWeb.JS/web-sample/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/WasmWeb.JS/web-sample/vite.config.ts -------------------------------------------------------------------------------- /src/WasmWeb/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/WasmWeb/src/.gitignore -------------------------------------------------------------------------------- /src/WasmWeb/src/IOHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/WasmWeb/src/IOHelper.cs -------------------------------------------------------------------------------- /src/WasmWeb/src/Models/AccentPhrase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/WasmWeb/src/Models/AccentPhrase.cs -------------------------------------------------------------------------------- /src/WasmWeb/src/Models/AudioQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/WasmWeb/src/Models/AudioQuery.cs -------------------------------------------------------------------------------- /src/WasmWeb/src/Models/Mora.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/WasmWeb/src/Models/Mora.cs -------------------------------------------------------------------------------- /src/WasmWeb/src/OnnxInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/WasmWeb/src/OnnxInterop.cs -------------------------------------------------------------------------------- /src/WasmWeb/src/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/WasmWeb/src/Program.cs -------------------------------------------------------------------------------- /src/WasmWeb/src/PromiseArrayHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/WasmWeb/src/PromiseArrayHelper.cs -------------------------------------------------------------------------------- /src/WasmWeb/src/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/WasmWeb/src/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/WasmWeb/src/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/WasmWeb/src/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/WasmWeb/src/SynthesisExports.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/WasmWeb/src/SynthesisExports.cs -------------------------------------------------------------------------------- /src/WasmWeb/src/WasmWeb.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yamachu/VoicevoxEngineSharp/HEAD/src/WasmWeb/src/WasmWeb.csproj -------------------------------------------------------------------------------- /src/WasmWeb/src/types/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------