vibevoice.cpp
C++ port of Microsoft VibeVoice built on ggml
파일 탐색기
최종 버전 다운로드 (.zip)- ci.yml
- conversion.md
- cuda.md
- CMakeLists.txt
- main.cpp
- CMakeLists.txt
- main.cpp
- CMakeLists.txt
- vibevoice.h
- vibevoice_capi.h
- convert_tokenizer.py
- convert_vibevoice_to_gguf.py
- convert_voice_to_gguf.py
- quantize_gguf.py
- acoustic_tokenizer.cpp
- acoustic_tokenizer.hpp
- audio_io.cpp
- audio_io.hpp
- backend.cpp
- backend.hpp
- common.cpp
- common.hpp
- conv1d.cpp
- conv1d.hpp
- diffusion_head.cpp
- diffusion_head.hpp
- dpm_solver.cpp
- dpm_solver.hpp
- ggml_extend.hpp
- model_loader.cpp
- model_loader.hpp
- qwen2.cpp
- qwen2.hpp
- rms_norm.hpp
- rope.hpp
- tokenizer.cpp
- tokenizer.hpp
- vibevoice.cpp
- vibevoice_asr.cpp
- vibevoice_asr.hpp
- vibevoice_capi.cpp
- vibevoice_speech_helpers.hpp
- vibevoice_tts.cpp
- vibevoice_tts.hpp
- tokenizer_corpus.txt
- tokenizer_reference.jsonl
- CMakeLists.txt
- compare_tensors.py
- dump_acoustic_reference.py
- dump_block1d_reference.py
- dump_diffusion_reference.py
- dump_qwen2_reference.py
- dump_rope_reference.py
- dump_sconv1d_reference.py
- dump_tokenizer_reference.py
- test_15b_closed_loop.cpp
- test_15b_multispeaker.cpp
- test_15b_smoke.cpp
- test_acoustic.cpp
- test_audio_io.cpp
- test_block1d.cpp
- test_capi.cpp
- test_capi_stream.cpp
- test_closed_loop.cpp
- test_decoder_chunked_parity.cpp
- test_diffusion_head.cpp
- test_dpm_solver.cpp
- test_e2e_asr.cpp
- test_e2e_tts.cpp
- test_encoder_chunked_parity.cpp
- test_generate_stream_parity.cpp
- test_load_15b.cpp
- test_load_realtime.cpp
- test_long_form_asr.cpp
- test_qwen2_block.cpp
- test_qwen2_resident.cpp
- test_rope.cpp
- test_sconv1d.cpp
- test_sconvt_streaming.cpp
- test_smoke.cpp
- test_tokenizer.cpp
- dr_wav.h
- ggml
- .gitignore
- .gitmodules
- AGENTS.md
- CMakeLists.txt
- LICENSE
- README.md
# 설치 가이드
1. 코드 내려받기
git clone https://github.com/localai-org/vibevoice.cpp
깃허브에서 프로젝트 코드 전체를 내 컴퓨터로 내려받습니다.
cd vibevoice.cpp
방금 내려받은 프로젝트 폴더 안으로 이동합니다.
2. CMake
보통 추천사전 준비물
cmake -B build -DVIBEVOICE_BUILD_TESTS=ON && cmake --build build -j
이 명령어를 터미널에 그대로 입력해 실행하세요.
cmake -B build -DVIBEVOICE_BUILD_TESTS=ON
이 명령어를 터미널에 그대로 입력해 실행하세요.
cmake --build build -j
이 명령어를 터미널에 그대로 입력해 실행하세요.
build 폴더 안에 실행 파일이 생성됐는지 확인하고, 직접 실행해보세요 (예: ./build/앱이름).
이 레포의 README에 적힌 실제 명령어를 그대로 가져왔습니다.
// repository documentation
Was this content helpful?
(0 ratings)
