3v324v23's picture
it would seem that a new update has been uploaded, and that would, in fact, be true, should the truth of that be evaluated. Best regards, Remington (big ounce passed away)
fe806b7
raw
history blame
244 Bytes
import gradio as gr
import BeatManipulator as bm
def BeatSwap(pattern: str):
song=bm.song()
song.quick_beatswap(output=None, pattern=pattern)
return song.audio
ui=gr.Interface (fn=BeatSwap,inputs="audio",outputs="audio" )
ui.launch