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

Function output_path_for

src/framework/audio/utility_api.cpp:53–59  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

51}
52
53std::filesystem::path output_path_for(
54 const std::filesystem::path & input_file,
55 const std::filesystem::path & output_dir,
56 const std::string & suffix) {
57 std::filesystem::create_directories(output_dir);
58 return output_dir / (input_file.stem().string() + suffix + ".wav");
59}
60
61void create_output_parent(const std::filesystem::path & output_wav) {
62 const auto parent = output_wav.parent_path();

Callers 2

denoise_directoryFunction · 0.85
super_resolve_directoryFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected