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
Hello, I am using the HAELocalAudioSeparationFile api, but I noticed that, like the HAESpaceRenderFile api, a data download process is carried out, but in the HAELocalAudioSeparationFile api it does not know when the download of said data is finished and it would be fine if it had a DownloadCallback to see if it was initialized correctly. With that, you could prevent executing an operation without it being correctly initialized.
Something like that:
HAELocalAudioSeparationFile val = new...;
val.initEngine(DownloadCallback callback)
The text was updated successfully, but these errors were encountered:
@Juanjo3299 Dear developer,
At present, our model download operation is handled in the AudioDepartionCallBack callback of the startSeparationTask interface. The model will only be downloaded once. After the download is completed, the model will not be downloaded again.
The initialization is successful when the startSeparationTask interface is called and the task is successfully started.
AudioDepartionCallBack interface, please refer to the following link: https://developer.huawei.com/consumer/en/doc/development/Media-References/audioseparationcallback-0000001190927067
Hello, I am using the HAELocalAudioSeparationFile api, but I noticed that, like the HAESpaceRenderFile api, a data download process is carried out, but in the HAELocalAudioSeparationFile api it does not know when the download of said data is finished and it would be fine if it had a DownloadCallback to see if it was initialized correctly. With that, you could prevent executing an operation without it being correctly initialized.
Something like that:
HAELocalAudioSeparationFile val = new...;
val.initEngine(DownloadCallback callback)
The text was updated successfully, but these errors were encountered: