Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 664 Bytes

README.md

File metadata and controls

26 lines (20 loc) · 664 Bytes

practice cpp cmake voicevox

run

in devcontainer

Dockerコンテナから音出すの難しかったので./simple_ttsで作成されたaudio.wavをホスト側にコピーしたら再生できます。

binary=download-linux-x64
curl -sSfL https://github.com/VOICEVOX/voicevox_core/releases/latest/download/${binary} -o download
chmod +x download
./download
cmake -S . -B build
cmake --build build
cp build/simple_tts ./
./simple_tts これはテストです

in host

docker build -t practice-cpp-cmake-voicevox .
docker run practice-cpp-cmake-voicevox
# docker cp などでaudio.wavをホスト側にコピーして再生