@bryan-gc/transcribe-cli 1.0.2 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +23 -20
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,46 +1,49 @@
|
|
|
1
1
|
# transcribe-cli
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
A terminal (CLI) application built with Node.js and TypeScript that records audio from your microphone and transcribes it using the OpenAI Whisper API.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## System Requirements
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
This tool depends on native audio utilities. Install them before running:
|
|
8
8
|
|
|
9
9
|
### Linux (Ubuntu / Debian)
|
|
10
|
-
Necesitas instalar `sox` y las librerías de soporte de formatos de audio:
|
|
11
10
|
```bash
|
|
12
11
|
sudo apt-get update
|
|
13
12
|
sudo apt-get install sox libsox-fmt-all
|
|
14
13
|
```
|
|
15
14
|
|
|
16
15
|
### macOS
|
|
17
|
-
Puedes instalar `sox` usando Homebrew:
|
|
18
16
|
```bash
|
|
19
17
|
brew install sox
|
|
20
18
|
```
|
|
21
19
|
|
|
22
20
|
### Windows
|
|
23
|
-
1.
|
|
24
|
-
2.
|
|
21
|
+
1. Download the binaries from [SoX](https://sourceforge.net/projects/sox/).
|
|
22
|
+
2. Add the SoX folder to your `PATH` environment variable.
|
|
25
23
|
|
|
26
24
|
---
|
|
27
25
|
|
|
28
|
-
##
|
|
26
|
+
## Installation
|
|
29
27
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
28
|
+
```bash
|
|
29
|
+
npm install -g @bryan-gc/transcribe-cli
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## First Run & Configuration
|
|
33
|
+
|
|
34
|
+
On the first launch, an interactive prompt will ask you for:
|
|
35
|
+
- Your **OpenAI API Key**
|
|
36
|
+
- A **base path** where audio recordings and glossaries will be stored
|
|
37
|
+
|
|
38
|
+
Your settings are saved persistently at `~/.transcribe-cli/config.json` and reused on every subsequent run.
|
|
36
39
|
|
|
37
|
-
##
|
|
40
|
+
## Usage
|
|
38
41
|
|
|
39
|
-
Para iniciar la aplicación, simplemente corre:
|
|
40
42
|
```bash
|
|
41
|
-
|
|
43
|
+
transcribe-cli
|
|
42
44
|
```
|
|
43
45
|
|
|
44
|
-
|
|
45
|
-
- **
|
|
46
|
-
- **
|
|
46
|
+
Navigate the interactive menu with:
|
|
47
|
+
- **Arrow keys** — move up/down
|
|
48
|
+
- **Enter** — confirm selection
|
|
49
|
+
- **Hotkeys** — press the letter shown in brackets (e.g. `r` to record, `t` to transcribe, `q` to quit)
|