inoryQwQ
fix: remove duplicate axmodels, fix model paths, add config.json for download tracking
afdce78
Raw
History Blame Contribute Delete
645 Bytes
#include "inflect_tts.hpp"
#include <iostream>
#include <fstream>
int main(int argc, char* argv[]) {
if (argc < 2) {
std::cerr << "Usage: tts_example <text>" << std::endl;
return 1;
}
TTSEngine engine("../models/inflect_encoder.axmodel", "../models/inflect_decoder.axmodel");
auto waveform = engine.synthesize(argv[1]);
// Save as raw PCM
std::ofstream out("output.pcm", std::ios::binary);
out.write(reinterpret_cast<const char*>(waveform.data()),
waveform.size() * sizeof(float));
std::cout << "Generated " << waveform.size() << " samples at 24kHz" << std::endl;
return 0;
}