| 101 | } |
| 102 | |
| 103 | std::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 | |
| 114 | minitts::app::AppBatchRequest build_request_sequence_from_json( |
| 115 | const std::filesystem::path & sequence_path) { |
no test coverage detected