Done! Model 'base.en' saved in 'models/ggml-base.en.bin'
You can now use it like this:
- $ ./main -m models/ggml-base.en.bin -f samples/jfk.wav
+ $ ./build/bin/whisper-cli -m models/ggml-base.en.bin -f samples/jfk.wav
```
### 2. Manually download pre-converted models
printf "Run the following command to compile it:\n\n"
printf " $ xcrun coremlc compile ./models/ggml-%s.mlmodel ./models\n\n" "$model"
printf "You can now use it like this:\n\n"
-printf " $ ./main -m models/ggml-%s.bin -f samples/jfk.wav\n" "$model"
+printf " $ ./build/bin/whisper-cli -m models/ggml-%s.bin -f samples/jfk.wav\n" "$model"
printf "\n"
echo Done! Model %model% saved in %root_path%\models\ggml-%model%.bin
echo You can now use it like this:
-echo main.exe -m %root_path%\models\ggml-%model%.bin -f %root_path%\samples\jfk.wav
+echo build\bin\Release\whisper-cli.exe -m %root_path%\models\ggml-%model%.bin -f %root_path%\samples\jfk.wav
goto :eof
printf "Done! Model '%s' saved in '%s/ggml-%s.bin'\n" "$model" "$models_path" "$model"
printf "You can now use it like this:\n\n"
-printf " $ ./main -m %s/ggml-%s.bin -f samples/jfk.wav\n" "$models_path" "$model"
+printf " $ ./build/bin/whisper-cli -m %s/ggml-%s.bin -f samples/jfk.wav\n" "$models_path" "$model"
printf "\n"