Skip to content

Commit

Permalink
examples
Browse files Browse the repository at this point in the history
  • Loading branch information
danemadsen committed Aug 26, 2024
1 parent 05e2ada commit 7c05e15
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion example/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ int main(int argc, char** argv) {

babylon_tts_init("./models/curie.onnx");

babylon_tts(argv[1], "path/to/output.wav");
babylon_tts(argv[1], "./c_output.wav");

babylon_tts_free();

Expand Down
2 changes: 1 addition & 1 deletion example/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ int main(int argc, char** argv) {
}
std::cout << std::endl;

vits.tts(phonemes, "./babylon_output.wav");
vits.tts(phonemes, "./cpp_output.wav");

std::vector<int64_t> phoneme_ids = dp.g2p_tokens(text);

Expand Down

0 comments on commit 7c05e15

Please sign in to comment.