Skip to content

Commit d79ef5b

Browse files
authored
Voxtral documentation fix (#14097)
### Summary ffmpeg command provided in documentation should ensure raw audio file has sampling rate 16kHz (default for Voxtral) Fixes #14025
1 parent c22a2b0 commit d79ef5b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/models/voxtral/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ To export the model, we use [Optimum ExecuTorch](https://github.com/huggingface/
88
## Setting up Optimum ExecuTorch
99
Install through pip package:
1010
```
11-
pip install optimum-excecutorch
11+
pip install optimum-executorch
1212
```
1313

1414
Or install from source:
@@ -101,5 +101,5 @@ with open("tensor.bin", "wb") as f:
101101
You can also produce raw audio file as follows (for Option A):
102102

103103
```
104-
ffmpeg -i audio.mp3 -f f32le -acodec pcm_f32le audio_input.bin
105-
```
104+
ffmpeg -i audio.mp3 -f f32le -acodec pcm_f32le -ar 16000 audio_input.bin
105+
```

0 commit comments

Comments
 (0)