MCPcopy Create free account
hub / github.com/0xShug0/audio.cpp / supported_text_batch_extensions

Function supported_text_batch_extensions

app/cli/batch.cpp:103–112  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

101}
102
103std::string supported_text_batch_extensions() {
104 std::ostringstream out;
105 for (size_t i = 0; i < std::size(kTextBatchFileFormats); ++i) {
106 if (i != 0) {
107 out << ", ";
108 }
109 out << kTextBatchFileFormats[i].extension;
110 }
111 return out.str();
112}
113
114minitts::app::AppBatchRequest build_request_sequence_from_json(
115 const std::filesystem::path & sequence_path) {

Callers 1

build_text_dir_batchFunction · 0.85

Calls 1

strMethod · 0.80

Tested by

no test coverage detected