Spaces:
Sleeping
Sleeping
File size: 12,082 Bytes
82a1838 36e50f2 82a1838 9d2e562 6182d7b 36e50f2 82a1838 18eff79 72852f7 18eff79 9d2e562 82a1838 6182d7b 36e50f2 30c28e8 36e50f2 18eff79 36e50f2 18eff79 9d248eb 18eff79 9d248eb 18eff79 9d248eb 82a1838 6182d7b 82a1838 6182d7b 82a1838 6182d7b 9d248eb 6182d7b 36e50f2 6182d7b 9d248eb 6182d7b 18eff79 6182d7b 72852f7 6182d7b 18eff79 6182d7b 0b0c3a1 6182d7b 36e50f2 6182d7b 82a1838 36e50f2 82a1838 9d248eb 82a1838 36e50f2 82a1838 18eff79 72852f7 82a1838 0b0c3a1 36e50f2 6182d7b 36e50f2 e3c5db4 36e50f2 6182d7b 1e4f3ac 6182d7b e3c5db4 36e50f2 9d248eb 18eff79 36e50f2 9d248eb 18eff79 36e50f2 9d248eb 36e50f2 6182d7b 1e4f3ac 72852f7 1e4f3ac 72852f7 6182d7b 0b0c3a1 6182d7b 36e50f2 6182d7b 82a1838 9d2e562 82a1838 36e50f2 82a1838 2cfca39 82a1838 36e50f2 82a1838 e3c5db4 2cfca39 36e50f2 6182d7b 82a1838 6182d7b 82a1838 6182d7b e3c5db4 6182d7b 82a1838 6182d7b 9d2e562 82a1838 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 | # app.py — SeparateTracks Gradio application
# Entry point: python app.py (runs on http://localhost:7860)
# MCP endpoint: http://localhost:7860/gradio_api/mcp/sse
import shutil
import sys
from importlib import import_module
from pathlib import Path
from urllib.parse import parse_qs, urlparse
import gradio as gr
from modules.yt_audio_get_tracks import (
download_audio,
get_title,
sanitize_job_id,
separate_tracks,
separate_tracks_sync,
)
from modules.file_utils import make_gradio_file_url
audio_gallery_module = import_module("modules.AudioGallery")
audio_gallery_head = f"<script>{getattr(audio_gallery_module, 'GALLERY_JS', '')}</script>"
SEPARATED_DIR = Path("separated").resolve()
gr.set_static_paths(paths=["separated/", SEPARATED_DIR.as_posix()])
def _extract_video_id(video_input: str) -> str:
candidate = video_input.strip()
if not candidate:
return ""
is_raw_id = "://" not in candidate and all(
marker not in candidate for marker in ("/", "?", "&")
)
if "://" not in candidate and (
"youtube.com" in candidate or "youtu.be" in candidate
):
candidate = f"https://{candidate}"
if is_raw_id:
return candidate
parsed = urlparse(candidate)
host = parsed.netloc.lower()
if host.endswith("youtu.be"):
return parsed.path.strip("/").split("/")[0]
if "youtube.com" in host:
video_id = parse_qs(parsed.query).get("v", [""])[0]
if video_id:
return video_id
path_parts = [part for part in parsed.path.split("/") if part]
for prefix in ("shorts", "embed", "live", "v"):
if prefix in path_parts:
prefix_index = path_parts.index(prefix)
if prefix_index + 1 < len(path_parts):
return path_parts[prefix_index + 1]
return ""
def _build_audio_gallery(paths) -> str:
audio_urls = [make_gradio_file_url(path) for path in paths]
return audio_gallery_module.AudioGallery._build_html(
audio_urls=audio_urls,
labels=audio_gallery_module.AudioGallery.DEFAULT_LABELS,
columns=3,
)
def _prepare_uploaded_audio(uploaded_audio: str) -> tuple[str, str]:
source_path = Path(uploaded_audio)
suffix = source_path.suffix.lower()
if suffix not in {".wav", ".mp3"}:
raise ValueError("Please upload a .wav or .mp3 file.")
job_id = sanitize_job_id(source_path.stem)
target_path = SEPARATED_DIR / f"{job_id}{suffix}"
shutil.copy2(source_path, target_path)
return str(target_path), job_id
def _resolve_youtube_job_id(video_input: str) -> tuple[str, str, str]:
video_id = _extract_video_id(video_input)
if not video_id:
return "", "", ""
url = f"https://www.youtube.com/watch?v={video_id}"
youtube_title = get_title(url)
return video_id, youtube_title, sanitize_job_id(youtube_title or video_id)
# ---------------------------------------------------------------------------
# AudioGallery CSS — injected inline so the component is self-contained
# ---------------------------------------------------------------------------
_CSS = """
#versions {
margin-top: 1em;
width: 100%;
text-align: center;
}
"""
# ---------------------------------------------------------------------------
# Version footer (graceful fallback if torch/cuda not available)
# ---------------------------------------------------------------------------
def _footer_html():
try:
from modules.version_info import versions_html
return versions_html()
except Exception:
python_ver = ".".join(str(x) for x in sys.version_info[:3])
return f"python: {python_ver} • gradio: {gr.__version__}"
# ---------------------------------------------------------------------------
# Core processing function (also exposed as MCP tool)
# ---------------------------------------------------------------------------
def _process_video_impl(video_id: str, progress=None):
progress_messages = []
def on_progress(message):
progress_messages.append(message)
video_id, youtube_title, job_id = _resolve_youtube_job_id(video_id)
if not video_id:
return (
"<p style='color:red;'>Please enter a YouTube video ID or URL.</p>",
"No video ID provided.",
)
try:
on_progress(f"YouTube title: {youtube_title}")
if progress is not None:
progress(0.0, desc="Preparing request")
url = f"https://www.youtube.com/watch?v={video_id}"
if progress is not None:
progress(0.15, desc="Downloading audio")
wav = download_audio(url, job_id, progress_callback=on_progress)
if progress is not None:
progress(0.45, desc="Separating tracks")
drums, vocals, guitar, bass, other, piano, music, full = separate_tracks_sync(
wav,
job_id,
progress_callback=on_progress,
)
if progress is not None:
progress(0.9, desc="Building audio gallery")
except Exception as exc:
status = "\n".join(progress_messages) if progress_messages else "Starting..."
return f"<p style='color:red;'>Error: {exc}</p>", f"{status}\nError: {exc}"
paths = [drums, vocals, guitar, bass, other, piano, music, full]
status = "\n".join(progress_messages + ["Done."])
if progress is not None:
progress(1.0, desc="Done")
return (
_build_audio_gallery(paths),
status,
)
def process_video(video_id: str, progress=gr.Progress(track_tqdm=True)) -> str:
"""Download audio from a YouTube video and separate it into instrument stems.
Uses Demucs htdemucs_6s to produce drums, vocals, guitar, bass, piano,
other, and a combined music track. Results are displayed as an audio gallery.
Args:
video_id: YouTube video ID or URL (e.g. dQw4w9WgXcQ).
Returns:
HTML string containing the AudioGallery with all separated stems.
"""
video_id, _youtube_title, job_id = _resolve_youtube_job_id(video_id)
if not video_id:
return "<p style='color:red;'>Please enter a YouTube video ID or URL.</p>"
try:
url = f"https://www.youtube.com/watch?v={video_id}"
wav = download_audio(url, job_id)
drums, vocals, guitar, bass, other, piano, music, full = separate_tracks_sync(wav, job_id)
except Exception as exc:
return f"<p style='color:red;'>Error: {exc}</p>"
paths = [drums, vocals, guitar, bass, other, piano, music, full]
return _build_audio_gallery(paths)
def process_video_with_progress(
video_id: str,
uploaded_audio: str | None,
cookies_upload: str | None,
progress=gr.Progress(track_tqdm=True),
):
status_lines = []
def on_progress(message):
if isinstance(message, str):
status_lines.append(message)
try:
if cookies_upload is not None:
shutil.copy(cookies_upload, "modules/cookies.txt")
if uploaded_audio:
progress(0.05, desc="Preparing uploaded audio")
yield "", "Preparing uploaded audio..."
audio_path, job_id = _prepare_uploaded_audio(uploaded_audio)
status_lines.append("Using uploaded audio file.")
else:
video_id, youtube_title, job_id = _resolve_youtube_job_id(video_id)
if not video_id:
yield (
"<p style='color:red;'>Please enter a YouTube video ID or URL, or upload an audio file.</p>",
"No video ID, URL, or audio file provided.",
)
return
status_lines.append(f"YouTube title: {youtube_title}")
url = f"https://www.youtube.com/watch?v={video_id}"
progress(0.05, desc="Downloading audio")
yield "", "\n".join(status_lines + ["Downloading audio from YouTube..."])
audio_path = download_audio(url, job_id, progress_callback=on_progress)
progress(0.4, desc="Separating tracks")
yield "", "\n".join(status_lines)
separation = separate_tracks(audio_path, job_id)
while True:
try:
event_type, payload = next(separation)
except StopIteration:
break
if event_type == "progress":
progress(payload["value"], desc=payload["desc"])
yield "", "\n".join(status_lines)
elif event_type == "result":
drums, vocals, guitar, bass, other, piano, music, full = payload
progress(0.9, desc="Building gallery")
yield "", "\n".join(status_lines)
except Exception as exc:
yield (
f"<p style='color:red;'>Error: {exc}</p>",
"\n".join(status_lines) + f"\nError: {exc}",
)
return
paths = [drums, vocals, guitar, bass, other, piano, music, full]
status_lines.append("Done.")
progress(1.0, desc="Done")
yield (
_build_audio_gallery(paths),
"\n".join(status_lines),
)
# ---------------------------------------------------------------------------
# Gradio UI
# ---------------------------------------------------------------------------
with gr.Blocks(title="SeparateTracks") as demo:
gr.Markdown(
"## \U0001f3bc SeparateTracks\n"
"Enter a YouTube video URL or ID, or upload a WAV/MP3 file, to "
"separate the audio into instrument stems "
"using [Demucs htdemucs\\_6s](https://github.com/adefossez/demucs)."
)
with gr.Row():
video_id_input = gr.Textbox(
label="YouTube Video ID or URL",
placeholder="dQw4w9WgXcQ or https://www.youtube.com/watch?v=dQw4w9WgXcQ",
scale=4,
)
run_btn = gr.Button("Separate Tracks", variant="primary", scale=1)
with gr.Row():
cookies_upload = gr.File(
label="Upload Chrome cookies.txt (Netscape format)",
file_types=[".txt"],
type="filepath",
)
gr.Markdown("""
**How to get cookies.txt:**
1. Install [Get cookies.txt LOCALLY](https://chromewebstore.google.com/detail/get-cookiestxt-locally/cclelndahbckbenkjhflpdbgdldlbecc)
2. Log into YouTube in Chrome
3. Click extension → Export cookies
4. Upload the file here
""")
gr.Markdown(
"\n\nFor details about yt-dlp's extractor behavior, see: https://github.com/yt-dlp/yt-dlp-wiki/blob/master/Extractors.md\n\n"
"One way to provide cookies safely is through a private browsing/incognito window:\n\n"
"1. Open a new private browsing/incognito window and log into YouTube.\n"
"2. chrome://extensions and specify Allow in Incognito.\n"
"2. In the same window and same tab from step 1, navigate to https://www.youtube.com/robots.txt (this should be the only private/incognito browsing tab open).\n"
"3. Export youtube.com cookies from the browser, then close the private browsing/incognito window so that the session is never opened in the browser again.\n"
)
# https://github.com/yt-dlp/yt-dlp-wiki/
upload_input = gr.File(
label="Audio File Override (.wav or .mp3)",
file_types=[".wav", ".mp3"],
type="filepath",
)
progress_output = gr.Textbox(label="Progress", interactive=False, lines=6)
audio_output = gr.HTML(label="Separated Tracks")
gr.HTML(value=_footer_html(), elem_id="versions", elem_classes="version-info")
run_btn.click(
fn=process_video_with_progress,
inputs=[video_id_input, upload_input, cookies_upload],
outputs=[audio_output, progress_output],
)
if __name__ == "__main__":
demo.launch(
mcp_server=True,
server_name="0.0.0.0",
server_port=7860,
allowed_paths=[SEPARATED_DIR.as_posix(), "separated/", ".separated/"],
favicon_path="separated/favicon.ico",
css=_CSS,
head=audio_gallery_head,
)
|