Wolfram Function Repository
Instant-use add-on functions for the Wolfram Language
Function Repository Resource:
Divide an audio signal into musical sources (such as vocals, drums and bass) using a neural network model
ResourceFunction["AudioSeparate"][input] separates the input audio into all available sources. | |
ResourceFunction["AudioSeparate"][input,source] separates the input audio and returns only the specified source. |
| "Overlap" | 0.25 | fraction of overlap between consecutive chunks. Must be between 0 and 0.5. |
| BatchSize | 1 | number of chunks processed in a single batch. Can be a positive integer or Infinity. |
| TargetDevice | "CPU" | device on which the neural network is evaluated. Possible values include "CPU" and "GPU". |
Separate instruments in an audio recording:
| In[1]:= | ![]() |
| Out[1]= |
| In[2]:= | ![]() |
| Out[2]= |
Use "Overlap" to control the fraction of overlap between consecutive chunks:
| In[6]:= | ![]() |
| Out[6]= | ![]() |
| In[7]:= | ![]() |
| Out[7]= | ![]() |
Use BatchSize to specify the number of chunks processed in a single batch:
| In[8]:= | ![]() |
| Out[8]= | ![]() |
| In[9]:= | ![]() |
| Out[9]= | ![]() |
Use TargetDevice to set the device on which the neural network is evaluated:
| In[10]:= | ![]() |
| Out[10]= | ![]() |
This work is licensed under a Creative Commons Attribution 4.0 International License