Spaces:
Runtime error
Runtime error
File size: 14,248 Bytes
ac059f4 f3f4634 ac059f4 f3f4634 ac059f4 f3f4634 ac059f4 f3f4634 ac059f4 f3f4634 ac059f4 f3f4634 ac059f4 f3f4634 ac059f4 3815be3 f3f4634 ac059f4 f3f4634 3815be3 f3f4634 3815be3 f3f4634 3815be3 f3f4634 3815be3 f3f4634 3815be3 f3f4634 3815be3 f3f4634 3815be3 f3f4634 3815be3 f3f4634 3815be3 f3f4634 3815be3 f3f4634 3815be3 03f09ee 3815be3 f3f4634 3815be3 f3f4634 3815be3 f3f4634 3815be3 f3f4634 ac059f4 f3f4634 ac059f4 f3f4634 ac059f4 f3f4634 03f09ee f3f4634 ac059f4 f3f4634 ac059f4 f3f4634 ac059f4 f3f4634 03f09ee f3f4634 03f09ee f3f4634 03f09ee f3f4634 03f09ee f3f4634 03f09ee ac059f4 f3f4634 ac059f4 03f09ee ac059f4 f3f4634 ac059f4 f3f4634 ac059f4 f3f4634 ac059f4 f3f4634 ac059f4 03f09ee ac059f4 f3f4634 ac059f4 f3f4634 ac059f4 f3f4634 ac059f4 f3f4634 ac059f4 f3f4634 ac059f4 f3f4634 ac059f4 03f09ee f3f4634 03f09ee ac059f4 f3f4634 ac059f4 f3f4634 ac059f4 3815be3 f3f4634 ac059f4 f3f4634 ac059f4 f3f4634 ac059f4 f3f4634 |
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 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 |
from pathlib import Path
from typing import Tuple
import yaml
import tempfile
import uuid
import numpy as np
import audiotools as at
import argbind
import gradio as gr
from vampnet.interface import Interface
Interface = argbind.bind(Interface)
AudioLoader = argbind.bind(at.data.datasets.AudioLoader)
conf = argbind.parse_args()
with argbind.scope(conf):
interface = Interface()
loader = AudioLoader()
print(f"interface device is {interface.device}")
dataset = at.data.datasets.AudioDataset(
loader,
sample_rate=interface.codec.sample_rate,
duration=interface.coarse.chunk_size_s,
n_examples=5000,
without_replacement=True,
)
OUT_DIR = Path("gradio-outputs")
OUT_DIR.mkdir(exist_ok=True, parents=True)
def load_audio(file):
print(file)
filepath = file.name
sig = at.AudioSignal.salient_excerpt(
filepath,
duration=interface.coarse.chunk_size_s
)
sig = interface.preprocess(sig)
out_dir = OUT_DIR / "tmp" / str(uuid.uuid4())
out_dir.mkdir(parents=True, exist_ok=True)
sig.write(out_dir / "input.wav")
return sig.path_to_file
def load_random_audio():
index = np.random.randint(0, len(dataset))
sig = dataset[index]["signal"]
sig = interface.preprocess(sig)
out_dir = OUT_DIR / "tmp" / str(uuid.uuid4())
out_dir.mkdir(parents=True, exist_ok=True)
sig.write(out_dir / "input.wav")
return sig.path_to_file
def vamp(
input_audio, init_temp, final_temp,
prefix_s, suffix_s, rand_mask_intensity,
mask_periodic_amt, beat_unmask_dur,
mask_dwn_chk, dwn_factor,
mask_up_chk, up_factor,
num_vamps, mode, use_beats, num_steps
):
# try:
print(input_audio)
sig = at.AudioSignal(input_audio.name)
if beat_unmask_dur > 0.0 and use_beats:
beat_mask = interface.make_beat_mask(
sig,
before_beat_s=0.0,
after_beat_s=beat_unmask_dur,
mask_downbeats=mask_dwn_chk,
mask_upbeats=mask_up_chk,
downbeat_downsample_factor=dwn_factor if dwn_factor > 0 else None,
beat_downsample_factor=up_factor if up_factor > 0 else None,
dropout=0.7,
invert=True
)
print(beat_mask)
else:
beat_mask = None
if mode == "standard":
print(f"running standard vampnet with {num_vamps} vamps")
zv, mask_z = interface.coarse_vamp_v2(
sig,
sampling_steps=num_steps,
temperature=(init_temp, final_temp),
prefix_dur_s=prefix_s,
suffix_dur_s=suffix_s,
num_vamps=num_vamps,
downsample_factor=mask_periodic_amt,
intensity=rand_mask_intensity,
ext_mask=beat_mask,
verbose=True,
return_mask=True
)
zv = interface.coarse_to_fine(zv)
mask = interface.to_signal(mask_z).cpu()
sig = interface.to_signal(zv).cpu()
print("done")
elif mode == "loop":
print(f"running loop vampnet with {num_vamps} vamps")
sig, mask = interface.loop(
sig,
temperature=(init_temp, final_temp),
prefix_dur_s=prefix_s,
suffix_dur_s=prefix_s, # suffix should be same length as prefix
num_loops=num_vamps,
downsample_factor=mask_periodic_amt,
intensity=rand_mask_intensity,
ext_mask=beat_mask,
verbose=True,
return_mask=True
)
sig = sig.cpu()
mask = mask.cpu()
print("done")
out_dir = OUT_DIR / str(uuid.uuid4())
out_dir.mkdir()
sig.write(out_dir / "output.wav")
mask.write(out_dir / "mask.wav")
return sig.path_to_file, mask.path_to_file
# except Exception as e:
# raise gr.Error(f"failed with error: {e}")
def save_vamp(
input_audio, init_temp, final_temp,
prefix_s, suffix_s, rand_mask_intensity,
mask_periodic_amt, beat_unmask_dur,
mask_dwn_chk, dwn_factor,
mask_up_chk, up_factor,
num_vamps, mode, output_audio, notes, use_beats, num_steps
):
out_dir = OUT_DIR / "saved" / str(uuid.uuid4())
out_dir.mkdir(parents=True, exist_ok=True)
sig_in = at.AudioSignal(input_audio.name)
sig_out = at.AudioSignal(output_audio.name)
sig_in.write(out_dir / "input.wav")
sig_out.write(out_dir / "output.wav")
data = {
"init_temp": init_temp,
"final_temp": final_temp,
"prefix_s": prefix_s,
"suffix_s": suffix_s,
"rand_mask_intensity": rand_mask_intensity,
"mask_periodic_amt": mask_periodic_amt,
"use_beats": use_beats,
"beat_unmask_dur": beat_unmask_dur,
"mask_dwn_chk": mask_dwn_chk,
"dwn_factor": dwn_factor,
"mask_up_chk": mask_up_chk,
"up_factor": up_factor,
"num_vamps": num_vamps,
"num_steps": num_steps,
"mode": mode,
"notes": notes,
}
# save with yaml
with open(out_dir / "data.yaml", "w") as f:
yaml.dump(data, f)
import zipfile
zip_path = out_dir.with_suffix(".zip")
with zipfile.ZipFile(zip_path, "w") as zf:
for file in out_dir.iterdir():
zf.write(file, file.name)
return f"saved! your save code is {out_dir.stem}", zip_path
with gr.Blocks() as demo:
with gr.Row():
# input audio
with gr.Column():
gr.Markdown("""
# Vampnet
**Instructions**:
1. Upload some audio (or click the load random audio button)
2. Adjust the mask hints. The more hints, the more the generated music will follow the input music
3. Adjust the vampnet parameters. The more vamps, the longer the generated music will be
4. Click the "vamp" button
5. Listen to the generated audio
6. If you noticed something you liked, write some notes, click the "save vamp" button, and copy the save code
""")
gr.Markdown("## Input Audio")
with gr.Column():
gr.Markdown("""
## Mask Hints
- most of the original audio will be masked and replaced with audio generated by vampnet
- mask hints are used to guide vampnet to generate audio that sounds like the original
- the more hints you give, the more the generated audio will sound like the original
""")
with gr.Column():
gr.Markdown("""
### Tips
- use the beat sync button so the output audio has the same beat structure as the input audio
- if you want the generated audio to sound like the original, but with a different beat structure:
- uncheck the beat sync button
- decrease the periodic unmasking to anywhere from 2 to 8
- if you want a more "random" generation:
- uncheck the beat sync button (or reduce the beat unmask duration)
- increase the periodic unmasking to 16 or more
- increase the temperatures!
""")
with gr.Row():
with gr.Column():
mode = gr.Radio(
label="**mode**. note that loop mode requires a prefix and suffix longer than 0",
choices=["standard", "loop"],
value="standard"
)
num_vamps = gr.Number(
label="number of vamps (or loops). more vamps = longer generated audio",
value=1,
precision=0
)
manual_audio_upload = gr.File(
label=f"upload some audio (will be randomly trimmed to max of {interface.coarse.chunk_size_s:.2f}s)",
file_types=["audio"]
)
load_random_audio_button = gr.Button("or load random audio")
input_audio = gr.Audio(
label="input audio",
interactive=False,
type="file",
)
audio_mask = gr.Audio(
label="audio mask (listen to this to hear the mask hints)",
interactive=False,
type="file",
)
# connect widgets
load_random_audio_button.click(
fn=load_random_audio,
inputs=[],
outputs=[ input_audio]
)
manual_audio_upload.change(
fn=load_audio,
inputs=[manual_audio_upload],
outputs=[ input_audio]
)
# mask settings
with gr.Column():
mask_periodic_amt = gr.Slider(
label="periodic hint (0.0 means no hint, 2 means one hint every 2 timesteps, etc, 4 means one hint every 4 timesteps, etc)",
minimum=0,
maximum=64,
step=1,
value=19,
)
rand_mask_intensity = gr.Slider(
label="random mask intensity. (If this is less than 1, scatters tiny hints throughout the audio, should be between 0.9 and 1.0)",
minimum=0.0,
maximum=1.0,
value=1.0
)
with gr.Accordion("prefix/suffix hints", open=False):
prefix_s = gr.Slider(
label="prefix hint length (seconds)",
minimum=0.0,
maximum=10.0,
value=0.0
)
suffix_s = gr.Slider(
label="suffix hint length (seconds)",
minimum=0.0,
maximum=10.0,
value=0.0
)
with gr.Accordion("temperature settings", open=False):
init_temp = gr.Slider(
label="initial temperature (should probably stay between 0.6 and 1)",
minimum=0.0,
maximum=1.5,
value=0.8
)
final_temp = gr.Slider(
label="final temperature (should probably stay between 0.7 and 2)",
minimum=0.0,
maximum=2.0,
value=1.0
)
use_beats = gr.Checkbox(
label="use beat hints",
value=True
)
num_steps = gr.Slider(
label="number of steps (should normally be between 12 and 36)",
minimum=4,
maximum=128,
step=1,
value=36
)
vamp_button = gr.Button("vamp!!!")
output_audio = gr.Audio(
label="output audio",
interactive=False,
type="file"
)
# gr.Markdown("**NOTE**: for loop mode, both prefix and suffix must be greater than 0.")
# compute_mask_button = gr.Button("compute mask")
# mask_output = gr.Audio(
# label="masked audio",
# interactive=False,
# visible=False
# )
# mask_output_viz = gr.Video(
# label="masked audio",
# interactive=False
# )
with gr.Column():
with gr.Accordion(label="beat unmask (how much time around the beat should be hinted?)"):
beat_unmask_dur = gr.Slider(
label="duration",
minimum=0.0,
maximum=3.0,
value=0.07
)
with gr.Accordion("downbeat settings", open=False):
mask_dwn_chk = gr.Checkbox(
label="hint downbeats",
value=True
)
dwn_factor = gr.Slider(
label="downbeat downsample factor (hint only every Nth downbeat)",
value=0,
minimum=0,
maximum=16,
step=1
)
with gr.Accordion("upbeat settings", open=False):
mask_up_chk = gr.Checkbox(
label="hint upbeats",
value=True
)
up_factor = gr.Slider(
label="upbeat downsample factor (hint only every Nth upbeat)",
value=0,
minimum=0,
maximum=16,
step=1
)
notes_text = gr.Textbox(
label="type any notes about the generated audio here",
value="",
interactive=True
)
save_button = gr.Button("save vamp")
download_file = gr.File(
label="vamp to download will appear here",
interactive=False
)
thank_you = gr.Markdown("")
# connect widgets
vamp_button.click(
fn=vamp,
inputs=[input_audio, init_temp,final_temp,
prefix_s, suffix_s, rand_mask_intensity,
mask_periodic_amt, beat_unmask_dur,
mask_dwn_chk, dwn_factor,
mask_up_chk, up_factor,
num_vamps, mode, use_beats, num_steps
],
outputs=[output_audio, audio_mask]
)
save_button.click(
fn=save_vamp,
inputs=[
input_audio, init_temp, final_temp,
prefix_s, suffix_s, rand_mask_intensity,
mask_periodic_amt, beat_unmask_dur,
mask_dwn_chk, dwn_factor,
mask_up_chk, up_factor,
num_vamps, mode,
output_audio,
notes_text, use_beats, num_steps
],
outputs=[thank_you, download_file]
)
demo.launch(share=True, enable_queue=True)
|