Xornotor's picture
fixed app v0.1.0 name
1a33354
raw
history blame
538 Bytes
import gradio as gr
import cq2m_utils
cq2m_interface = gr.Interface(fn=cq2m_utils.cq2m,
inputs=gr.Audio(type='filepath', format='wav'),
outputs=gr.File(type='file'),
title="Choral Quartets to Midi",
description="An application that uses Multi-Pitch Estimation and Voice Assignment to transform .WAV files with Choral Quartets recordings into MIDI files, with a separate track for each voice.")
cq2m_interface.launch()