Welcome folks today in this blog post we will be removing vocals & music from mp3 song using tensorflow in python using spleeter library. All the full source code of the application is shown below.
Get Started
In order to get started you need to install the below library using the below command as shown below
pip install spleeter
Now in order to remove the music and the vocals of the mp3
song you will execute the below command as shown below
spleeter input.mp3 -separate -o output.mp3
As you can see in the above command we are passing the input
mp3 file and here we are using the separate
flag to remove the vocals and the music and here we are providing the input.mp3 and then we are converting to output file output.mp3
by passing the -o
flag
Github Repository