mirror of
https://github.com/SrIzan10/discord-audio-transcriptor.git
synced 2026-06-06 00:56:47 +00:00
8 lines
156 B
Bash
8 lines
156 B
Bash
#!/bin/bash
|
|
git clone https://github.com/ggerganov/whisper.cpp
|
|
cd whisper.cpp
|
|
make
|
|
mv ./main ../util/whisper
|
|
cd ..
|
|
rm -r whisper.cpp
|
|
chmod +x ./util/whisper |