https://github.com/denperidge/transnote
Work in progress!
https://github.com/denperidge/transnote
Last synced: about 2 months ago
JSON representation
Work in progress!
- Host: GitHub
- URL: https://github.com/denperidge/transnote
- Owner: Denperidge
- Created: 2024-03-24T12:26:09.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-09T09:29:49.000Z (8 months ago)
- Last Synced: 2025-02-03T22:11:07.043Z (4 months ago)
- Language: JavaScript
- Homepage:
- Size: 157 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Trans(cribed) notes
## How-to's
### Installing emscripten
Either...
- Install using a package manager (recommended by Denperidge due to less dependency goofery)
- Install using the [emsdk instructions on the emscripten website](https://emscripten.org/docs/getting_started/downloads.html#installation-instructions-using-the-emsdk-recommended) (recommended by emscripten)
- Install using the Windows and Linux build scripts ([utils/install-emscripten.bat](utils/install-emscripten.bat) and [utils/install-emscripten.sh](utils/install-emscripten.sh) respectively). These are experimental and not guaranteed to work, but with some modifying and troubleshooting they might.### Make-ing whisper.wasm
*Pre-requirements: Node\*, g++\*\*, [cmake](https://cmake.org/download/#latest), [emscripten](#installing-emscripten)*Simply run the following command and follow the prompts!
```bash
node utils/make-whisper-wasm.js
```*: ensure you have a recent version of Node! For Windows/Mac, you can use the [Node installer on the website](https://nodejs.org/en/download). For Mac/Linux, you can use [nvm (node version manager)](https://github.com/nvm-sh/nvm).
\*\*: On Windows...
- Cygwin can be used for g++. Make sure to enable the gcc-core, gcc-g++ and ninja (ninja is only needed if you're building emscripten) package and to add `C:\cygwin64\bin` to path
- If cmake (`C:\Program Files\CMake\bin\`) is not in PATH, you might get [an error, as shown in this GitHub Issue](https://github.com/emscripten-core/emscripten/issues/18583#issuecomment-1401160138)