Spaces:
Sleeping
Sleeping
File size: 9,870 Bytes
cbcfe40 b2ff193 63eb7aa b2ff193 cbcfe40 63eb7aa cbcfe40 b2ff193 cbcfe40 b2ff193 cbcfe40 b2ff193 cbcfe40 b2ff193 cbcfe40 b2ff193 63eb7aa cbcfe40 63eb7aa cbcfe40 b2ff193 cbcfe40 63eb7aa b2ff193 63eb7aa b2ff193 cbcfe40 63eb7aa b2ff193 cbcfe40 63eb7aa b2ff193 63eb7aa b2ff193 63eb7aa cbcfe40 63eb7aa cbcfe40 b2ff193 cbcfe40 b2ff193 cbcfe40 b2ff193 cbcfe40 b2ff193 cbcfe40 63eb7aa cbcfe40 b2ff193 63eb7aa cbcfe40 b2ff193 cbcfe40 b2ff193 63eb7aa cbcfe40 b2ff193 cbcfe40 63eb7aa cbcfe40 b2ff193 cbcfe40 b2ff193 cbcfe40 b2ff193 cbcfe40 b2ff193 cbcfe40 b2ff193 63eb7aa cbcfe40 b2ff193 cbcfe40 63eb7aa b2ff193 cbcfe40 b2ff193 63eb7aa b2ff193 63eb7aa b2ff193 63eb7aa b2ff193 63eb7aa b2ff193 63eb7aa b2ff193 cbcfe40 63eb7aa b2ff193 cbcfe40 b2ff193 cbcfe40 b2ff193 cbcfe40 b2ff193 cbcfe40 | 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 | import gradio as gr
import numpy as np
import soundfile as sf
import os
import tempfile
import zipfile
from pathlib import Path
from pydub import AudioSegment
import io
def convert_to_wav(input_path):
"""Converts any format to WAV using pydub/ffmpeg"""
ext = Path(input_path).suffix.lower()
format_map = {
".m4a": "m4a",
".mp3": "mp3",
".aac": "aac",
".ogg": "ogg",
".flac": "flac",
".aiff": "aiff",
".aif": "aiff",
".wav": "wav",
".mp4": "mp4",
".wma": "wma",
}
fmt = format_map.get(ext, ext.replace(".", ""))
temp_wav = tempfile.mktemp(suffix=".wav")
audio = AudioSegment.from_file(input_path, format=fmt)
audio.export(temp_wav, format="wav")
return temp_wav
def get_channel_name(index, total_channels):
"""Assigns names to channels based on Atmos/Surround configuration"""
channel_maps = {
1: ["Mono"],
2: ["Left", "Right"],
3: ["Left", "Right", "Center"],
4: ["Left", "Right", "Left Surround", "Right Surround"],
6: ["Left", "Right", "Center", "LFE", "Left Surround", "Right Surround"],
8: ["Left", "Right", "Center", "LFE",
"Left Surround", "Right Surround", "Left Back", "Right Back"],
10: ["Left", "Right", "Center", "LFE",
"Left Surround", "Right Surround",
"Left Back", "Right Back",
"Left Height", "Right Height"],
12: ["Left", "Right", "Center", "LFE",
"Left Surround", "Right Surround",
"Left Back", "Right Back",
"Left Height Front", "Right Height Front",
"Left Height Rear", "Right Height Rear"],
14: ["Left", "Right", "Center", "LFE",
"Left Surround", "Right Surround",
"Left Back", "Right Back",
"Left Height Front", "Right Height Front",
"Left Height Rear", "Right Height Rear",
"Top Front", "Top Rear"],
16: ["Left", "Right", "Center", "LFE",
"Left Surround", "Right Surround",
"Left Back", "Right Back",
"Left Wide", "Right Wide",
"Left Height Front", "Right Height Front",
"Left Height Rear", "Right Height Rear",
"Top Front", "Top Rear"],
}
if total_channels in channel_maps:
return channel_maps[total_channels][index]
else:
return f"Channel_{index + 1}"
def extract_stems(audio_file, output_format, normalize):
"""Extracts all stems/channels from a multichannel audio file"""
if audio_file is None:
return None, "β Please upload an audio file"
converted_wav = None
try:
# ββ 1. Convert to WAV if needed ββββββββββββββββββββββββββ
ext = Path(audio_file).suffix.lower()
if ext not in [".wav", ".flac", ".aiff", ".aif"]:
info_text = "β³ Converting format... please wait\n\n"
converted_wav = convert_to_wav(audio_file)
read_path = converted_wav
else:
read_path = audio_file
# ββ 2. Read the file ββββββββββββββββββββββββββββββββββββββββ
audio_data, sample_rate = sf.read(read_path)
if len(audio_data.shape) == 1:
num_channels = 1
audio_data = audio_data.reshape(-1, 1)
else:
num_channels = audio_data.shape[1]
duration = len(audio_data) / sample_rate
file_name = Path(audio_file).stem
# ββ 3. File info βββββββββββββββββββββββββββββββββββββββ
info_text = f"""## π File Information
| Field | Value |
|-------|-------|
| **Name** | {Path(audio_file).name} |
| **Detected Channels** | {num_channels} |
| **Sample Rate** | {sample_rate} Hz |
| **Duration** | {int(duration//60)}:{int(duration%60):02d} min |
| **Bit Depth** | {audio_data.dtype} |
| **Output Format** | {output_format.upper()} |
## ποΈ Extracted Stems:\n\n"""
# ββ 4. Extract each channel βββββββββββββββββββββββββββββββββββββ
temp_dir = tempfile.mkdtemp()
stem_files = []
for i in range(num_channels):
channel_name = get_channel_name(i, num_channels)
channel_data = audio_data[:, i].copy().astype(np.float32)
if normalize:
max_val = np.max(np.abs(channel_data))
if max_val > 0:
channel_data = channel_data / max_val * 0.95
rms = np.sqrt(np.mean(channel_data**2))
rms_db = 20 * np.log10(rms + 1e-10)
stem_filename = f"{file_name}_{i+1:02d}_{channel_name.replace(' ', '_')}.{output_format}"
stem_path = os.path.join(temp_dir, stem_filename)
sf.write(stem_path, channel_data, sample_rate)
stem_files.append(stem_path)
emoji = "π"
if "LFE" in channel_name or "Sub" in channel_name:
emoji = "π₯"
elif "Height" in channel_name or "Top" in channel_name:
emoji = "β¬οΈ"
elif "Surround" in channel_name or "Back" in channel_name:
emoji = "β©οΈ"
elif "Center" in channel_name:
emoji = "π€"
elif "Left" in channel_name:
emoji = "βοΈ"
elif "Right" in channel_name:
emoji = "βΆοΈ"
info_text += f"{emoji} **{channel_name}** β `{stem_filename}` | RMS: `{rms_db:.1f} dBFS`\n\n"
# ββ 5. Create ZIP ββββββββββββββββββββββββββββββββββββββββββββββ
zip_filename = f"{file_name}_stems.zip"
zip_path = os.path.join(temp_dir, zip_filename)
with zipfile.ZipFile(zip_path, 'w', zipfile.ZIP_DEFLATED) as zipf:
for stem_file in stem_files:
zipf.write(stem_file, os.path.basename(stem_file))
zip_size = os.path.getsize(zip_path) / (1024 * 1024)
info_text += f"\n---\n## π¦ ZIP Ready\n`{zip_filename}` β **{zip_size:.1f} MB** with {num_channels} stems"
return zip_path, info_text
except Exception as e:
import traceback
return None, f"β Error: {str(e)}\n\n```\n{traceback.format_exc()}\n```"
finally:
if converted_wav and os.path.exists(converted_wav):
os.remove(converted_wav)
def create_demo_51():
"""Creates a 5.1 Surround demo file"""
temp_dir = tempfile.mkdtemp()
demo_path = os.path.join(temp_dir, "demo_5.1_surround.wav")
sr = 48000
t = np.linspace(0, 4, sr * 4)
channels = [
np.sin(2 * np.pi * 440 * t) * 0.6,
np.sin(2 * np.pi * 554 * t) * 0.6,
np.sin(2 * np.pi * 330 * t) * 0.7,
np.sin(2 * np.pi * 55 * t) * 0.9,
np.sin(2 * np.pi * 392 * t) * 0.4,
np.sin(2 * np.pi * 494 * t) * 0.4,
]
sf.write(demo_path, np.column_stack(channels).astype(np.float32), sr)
return demo_path
with gr.Blocks(
title="π΅ Atmos Stem Extractor",
theme=gr.themes.Soft(primary_hue="purple", secondary_hue="blue"),
css="""
.title { text-align: center; }
.gr-button-primary { background: linear-gradient(90deg,#7c3aed,#2563eb) !important; }
"""
) as demo:
gr.Markdown("""
# π΅ Dolby Atmos Β· Stem Extractor
**Extract each channel from your multichannel files** β Atmos, 5.1, 7.1, 7.1.4 and more
""")
with gr.Row():
with gr.Column(scale=1):
audio_input = gr.File(
label="π Upload your audio file",
file_types=[".wav", ".flac", ".aiff", ".aif",
".m4a", ".mp3", ".aac", ".ogg",
".mp4", ".wma"],
type="filepath"
)
with gr.Row():
output_format = gr.Radio(
choices=["wav", "flac", "ogg"],
value="wav",
label="ποΈ Output Format"
)
normalize = gr.Checkbox(
value=False,
label="πΆ Normalize Channels"
)
extract_btn = gr.Button("π Extract Stems", variant="primary", size="lg")
demo_btn = gr.Button("πΉ Generate 5.1 Demo", variant="secondary")
gr.Markdown("""
### π Supported Formats
| Input | Output |
|---------|--------|
| WAV, FLAC, AIFF | WAV |
| **M4A, MP3, AAC** | FLAC |
| OGG, MP4, WMA | OGG |
### ποΈ Detected Configurations
| Config | Channels |
|--------|---------|
| Stereo | 2 |
| 5.1 Surround | 6 |
| 7.1 Surround | 8 |
| 7.1.4 Atmos | 12 |
| 9.1.6 Atmos | 16 |
""")
with gr.Column(scale=1):
output_file = gr.File(label="π¦ Download ZIP with all stems")
info_output = gr.Markdown(value="*Upload a file to get started...*")
extract_btn.click(
fn=extract_stems,
inputs=[audio_input, output_format, normalize],
outputs=[output_file, info_output]
)
demo_btn.click(
fn=create_demo_51,
outputs=[audio_input]
)
if __name__ == "__main__":
demo.launch() |