TEAMuP-dev / HARP

A sample editing application allowing for hosted, asynchronous, remote processing of audio with machine learning by routing through Gradio endpoints.
BSD 3-Clause "New" or "Revised" License
27 stars 1 forks source link

std::system alternative #172

Closed NathanPruyne closed 2 months ago

NathanPruyne commented 2 months ago

From src/WebModel.h lines 163-164:

// TODO: urgently need to find a better alternative to system
int result = std::system(command.c_str());

This system call also seems to be the root cause of #170

bryan-pardo commented 2 months ago

Nathan fixed this.

bryan-pardo commented 2 months ago

Done!