| 85 | } |
| 86 | public: |
| 87 | ExampleRunner(std::string inputFile, std::string outputPrefix) : inputWav(inputFile), outputPrefix(outputPrefix) { |
| 88 | if (!inputWav.result) { |
| 89 | std::cerr << inputWav.result.reason << "\n"; |
| 90 | std::exit(1); |
| 91 | } |
| 92 | } |
| 93 | |
| 94 | void runExamples() { |
| 95 | extendDuration(3); |
nothing calls this directly
no outgoing calls
no test coverage detected