You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The cli and api endpoint seem to make use of a wrapper:
uvr_module.uvr_wrapper(
inputpath, outputpath, model_name=modelname, export_format=format
)
```
But not sure this actually works, as the wrapper does not accept an output_path, it returns the files.
Have also tried to use the wrapper directly:
```
uvr = UVR()
results = uvr.uvr_wrapper(input_path, agg=10, model_name="HP3_all_vocals.pth")
for i, result in enumerate(results):
wav_instrument, wav_vocals, sr, agg = result
sf.write(f"{output_path}/instrument_{i}.wav", wav_instrument / 32768, sr)
sf.write(f"{output_path}/vocals_{i}.wav", wav_vocals / 32768, sr)
but sadly I still get the same issue of the instrumental and vocals files being the same (original audio). Any help @Tps-F ?
Is this available in this version of the project yet? if so any examples, trying to migrate from the old repo where it was working.
thanks,
The text was updated successfully, but these errors were encountered: