├── .gitignore ├── .npmrc ├── LICENSE.md ├── README.md ├── package.json ├── postcss.config.js ├── src ├── app.css ├── app.d.ts ├── app.html ├── electron │ ├── index.js │ └── preload.js ├── lib │ ├── components │ │ ├── BasicLoading.svelte │ │ ├── FancyLoading.svelte │ │ └── SoundWave.svelte │ ├── models │ │ └── UniformBuffer.ts │ ├── ratchet │ │ ├── ratchet-web.d.ts │ │ ├── ratchet-web.js │ │ └── ratchet-web_bg.wasm.d.ts │ └── shaders │ │ └── loading.wgsl └── routes │ ├── +layout.svelte │ ├── +layout.ts │ └── +page.svelte ├── static ├── favicon.png ├── fonts │ └── SourceSans.ttf ├── images │ ├── download.svg │ ├── pause.svg │ ├── play.svg │ ├── ratchet.png │ ├── screenshot.png │ ├── textFile.svg │ ├── upload.svg │ └── whisper.svg └── pkg │ └── ratchet-web │ └── ratchet-web_bg.wasm ├── svelte.config.js ├── tailwind.config.js ├── tsconfig.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugo-Dz/on-device-transcription/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugo-Dz/on-device-transcription/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugo-Dz/on-device-transcription/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugo-Dz/on-device-transcription/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugo-Dz/on-device-transcription/HEAD/postcss.config.js -------------------------------------------------------------------------------- /src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugo-Dz/on-device-transcription/HEAD/src/app.css -------------------------------------------------------------------------------- /src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugo-Dz/on-device-transcription/HEAD/src/app.d.ts -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugo-Dz/on-device-transcription/HEAD/src/app.html -------------------------------------------------------------------------------- /src/electron/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugo-Dz/on-device-transcription/HEAD/src/electron/index.js -------------------------------------------------------------------------------- /src/electron/preload.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/components/BasicLoading.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugo-Dz/on-device-transcription/HEAD/src/lib/components/BasicLoading.svelte -------------------------------------------------------------------------------- /src/lib/components/FancyLoading.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugo-Dz/on-device-transcription/HEAD/src/lib/components/FancyLoading.svelte -------------------------------------------------------------------------------- /src/lib/components/SoundWave.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugo-Dz/on-device-transcription/HEAD/src/lib/components/SoundWave.svelte -------------------------------------------------------------------------------- /src/lib/models/UniformBuffer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugo-Dz/on-device-transcription/HEAD/src/lib/models/UniformBuffer.ts -------------------------------------------------------------------------------- /src/lib/ratchet/ratchet-web.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugo-Dz/on-device-transcription/HEAD/src/lib/ratchet/ratchet-web.d.ts -------------------------------------------------------------------------------- /src/lib/ratchet/ratchet-web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugo-Dz/on-device-transcription/HEAD/src/lib/ratchet/ratchet-web.js -------------------------------------------------------------------------------- /src/lib/ratchet/ratchet-web_bg.wasm.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugo-Dz/on-device-transcription/HEAD/src/lib/ratchet/ratchet-web_bg.wasm.d.ts -------------------------------------------------------------------------------- /src/lib/shaders/loading.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugo-Dz/on-device-transcription/HEAD/src/lib/shaders/loading.wgsl -------------------------------------------------------------------------------- /src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugo-Dz/on-device-transcription/HEAD/src/routes/+layout.svelte -------------------------------------------------------------------------------- /src/routes/+layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugo-Dz/on-device-transcription/HEAD/src/routes/+layout.ts -------------------------------------------------------------------------------- /src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugo-Dz/on-device-transcription/HEAD/src/routes/+page.svelte -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugo-Dz/on-device-transcription/HEAD/static/favicon.png -------------------------------------------------------------------------------- /static/fonts/SourceSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugo-Dz/on-device-transcription/HEAD/static/fonts/SourceSans.ttf -------------------------------------------------------------------------------- /static/images/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugo-Dz/on-device-transcription/HEAD/static/images/download.svg -------------------------------------------------------------------------------- /static/images/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugo-Dz/on-device-transcription/HEAD/static/images/pause.svg -------------------------------------------------------------------------------- /static/images/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugo-Dz/on-device-transcription/HEAD/static/images/play.svg -------------------------------------------------------------------------------- /static/images/ratchet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugo-Dz/on-device-transcription/HEAD/static/images/ratchet.png -------------------------------------------------------------------------------- /static/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugo-Dz/on-device-transcription/HEAD/static/images/screenshot.png -------------------------------------------------------------------------------- /static/images/textFile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugo-Dz/on-device-transcription/HEAD/static/images/textFile.svg -------------------------------------------------------------------------------- /static/images/upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugo-Dz/on-device-transcription/HEAD/static/images/upload.svg -------------------------------------------------------------------------------- /static/images/whisper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugo-Dz/on-device-transcription/HEAD/static/images/whisper.svg -------------------------------------------------------------------------------- /static/pkg/ratchet-web/ratchet-web_bg.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugo-Dz/on-device-transcription/HEAD/static/pkg/ratchet-web/ratchet-web_bg.wasm -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugo-Dz/on-device-transcription/HEAD/svelte.config.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugo-Dz/on-device-transcription/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugo-Dz/on-device-transcription/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hugo-Dz/on-device-transcription/HEAD/vite.config.ts --------------------------------------------------------------------------------