File size: 260 Bytes
0550b50
 
 
fe806b7
 
 
0550b50
703c4ba
0550b50
1
2
3
4
5
6
7
8
9
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",theme="default" )
ui.launch