├── .gitignore ├── README.md ├── app.vue ├── components ├── AudioVisualizer.vue ├── LanguageSelector.vue └── Progress.vue ├── lib └── worker.ts ├── nuxt.config.ts ├── package.json └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyBontecou/nuxt-transformersjs-realtime-transcription/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyBontecou/nuxt-transformersjs-realtime-transcription/HEAD/README.md -------------------------------------------------------------------------------- /app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyBontecou/nuxt-transformersjs-realtime-transcription/HEAD/app.vue -------------------------------------------------------------------------------- /components/AudioVisualizer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyBontecou/nuxt-transformersjs-realtime-transcription/HEAD/components/AudioVisualizer.vue -------------------------------------------------------------------------------- /components/LanguageSelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyBontecou/nuxt-transformersjs-realtime-transcription/HEAD/components/LanguageSelector.vue -------------------------------------------------------------------------------- /components/Progress.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyBontecou/nuxt-transformersjs-realtime-transcription/HEAD/components/Progress.vue -------------------------------------------------------------------------------- /lib/worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyBontecou/nuxt-transformersjs-realtime-transcription/HEAD/lib/worker.ts -------------------------------------------------------------------------------- /nuxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyBontecou/nuxt-transformersjs-realtime-transcription/HEAD/nuxt.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyBontecou/nuxt-transformersjs-realtime-transcription/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyBontecou/nuxt-transformersjs-realtime-transcription/HEAD/tsconfig.json --------------------------------------------------------------------------------