Spaces:
Running
on
Zero
Running
on
Zero
MohamedRashad
commited on
Commit
•
9624070
1
Parent(s):
bd6ddf7
Upload Application
Browse files- app.py +101 -0
- audiomack.svg +1 -0
- requirements.txt +4 -0
app.py
ADDED
@@ -0,0 +1,101 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import time
|
2 |
+
from pathlib import Path
|
3 |
+
|
4 |
+
import gradio as gr
|
5 |
+
from audio_separator import Separator
|
6 |
+
from pydub import AudioSegment
|
7 |
+
from pytube import YouTube
|
8 |
+
|
9 |
+
available_model = ["UVR-MDX-NET-Inst_HQ_3", "UVR-MDX-NET-Voc_FT", "UVR_MDXNET_KARA_2", "Kim_Vocal_2", "UVR_MDXNET_Main"]
|
10 |
+
|
11 |
+
def reduce_audio_size(audio_path):
|
12 |
+
s1 = AudioSegment.from_file(audio_path)
|
13 |
+
s1.export(audio_path, format="mp3", bitrate="64k")
|
14 |
+
|
15 |
+
|
16 |
+
def audio_sep(youtube_url, audio_path, separation_model, separation_mode, progress=gr.Progress()):
|
17 |
+
out_folder = Path("/shared_volume/whisper-finetuning/audio_filtered")
|
18 |
+
out_folder.mkdir(exist_ok=True)
|
19 |
+
temp_folder = Path("/shared_volume/whisper-finetuning/tmp")
|
20 |
+
temp_folder.mkdir(exist_ok=True)
|
21 |
+
|
22 |
+
print(youtube_url)
|
23 |
+
print(audio_path)
|
24 |
+
print(separation_model)
|
25 |
+
print(separation_mode)
|
26 |
+
|
27 |
+
youtube_url = youtube_url.strip()
|
28 |
+
if youtube_url is not None and youtube_url != "":
|
29 |
+
try:
|
30 |
+
print("Downloading YouTube audio...")
|
31 |
+
yt = YouTube(youtube_url)
|
32 |
+
video_id = yt.video_id
|
33 |
+
save_audio_path = temp_folder / f"{video_id}.mp3"
|
34 |
+
if yt.length > 5 * 60:
|
35 |
+
raise gr.Error("Video too long. Please use a video shorter than 5 minutes.")
|
36 |
+
stream = yt.streams.filter(only_audio=True).order_by("abr").desc().first()
|
37 |
+
stream.download(filename=str(save_audio_path))
|
38 |
+
audio_path = str(save_audio_path)
|
39 |
+
print("Downloaded YouTube audio")
|
40 |
+
except:
|
41 |
+
gr.Info("Something went wrong. Skipping to second input.")
|
42 |
+
|
43 |
+
if audio_path is None:
|
44 |
+
gr.Info("Please input an audio file or YouTube URL.")
|
45 |
+
return None, None
|
46 |
+
|
47 |
+
if len(separation_mode) == 1:
|
48 |
+
separation_mode = separation_mode[0]
|
49 |
+
elif len(separation_mode) == 0:
|
50 |
+
return None, None
|
51 |
+
else:
|
52 |
+
separation_mode = None
|
53 |
+
progress(0, desc="Starting...")
|
54 |
+
separator = Separator(
|
55 |
+
audio_path,
|
56 |
+
model_name=separation_model,
|
57 |
+
use_cuda=False,
|
58 |
+
output_dir=str(out_folder),
|
59 |
+
output_single_stem=separation_mode,
|
60 |
+
)
|
61 |
+
for i in progress.tqdm(range(50)):
|
62 |
+
time.sleep(0.01)
|
63 |
+
|
64 |
+
results = [out_folder / p for p in separator.separate()]
|
65 |
+
print(results)
|
66 |
+
|
67 |
+
for i in progress.tqdm(range(50, 100)):
|
68 |
+
time.sleep(0.01)
|
69 |
+
|
70 |
+
if separation_mode == "Instrument":
|
71 |
+
instrument_stem_path = str(results[0])
|
72 |
+
reduce_audio_size(instrument_stem_path)
|
73 |
+
vocal_stem_path = None
|
74 |
+
elif separation_mode == "Vocal":
|
75 |
+
instrument_stem_path = None
|
76 |
+
vocal_stem_path = str(results[0])
|
77 |
+
reduce_audio_size(vocal_stem_path)
|
78 |
+
else:
|
79 |
+
instrument_stem_path = str(results[0])
|
80 |
+
reduce_audio_size(instrument_stem_path)
|
81 |
+
vocal_stem_path = str(results[1])
|
82 |
+
reduce_audio_size(vocal_stem_path)
|
83 |
+
return instrument_stem_path, vocal_stem_path
|
84 |
+
|
85 |
+
|
86 |
+
gr.Interface(
|
87 |
+
audio_sep,
|
88 |
+
[
|
89 |
+
gr.Textbox(
|
90 |
+
label="YouTube video URL (No videos more than 5 mins)",
|
91 |
+
placeholder="https://www.youtube.com/watch?v=XXXXXXXXXXX",
|
92 |
+
),
|
93 |
+
gr.Audio(label="Audio Input", type="filepath"),
|
94 |
+
gr.Dropdown(available_model, label="Separation Model", value="UVR_MDXNET_KARA_2"),
|
95 |
+
gr.CheckboxGroup(choices=["Instrument", "Vocal"], label="Separation Mode", value=["Instrument", "Vocal"]),
|
96 |
+
],
|
97 |
+
[gr.Audio(label="Music/Instrument Output", type="filepath"), gr.Audio(label="Vocal Output", type="filepath")],
|
98 |
+
title="Audio Separator",
|
99 |
+
description="<center>Separate the music and vocal from the input audio</center>",
|
100 |
+
allow_flagging=False,
|
101 |
+
).queue().launch(share=True, favicon_path=Path(__file__).parent / "audiomack.svg")
|
audiomack.svg
ADDED
requirements.txt
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
pathlib
|
2 |
+
audio-separator
|
3 |
+
pydub
|
4 |
+
pytube
|