audio2midi 0.14.0__tar.gz → 0.15.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {audio2midi-0.14.0 → audio2midi-0.15.0}/PKG-INFO +2 -2
- {audio2midi-0.14.0 → audio2midi-0.15.0}/README.md +1 -1
- {audio2midi-0.14.0 → audio2midi-0.15.0}/pyproject.toml +1 -1
- {audio2midi-0.14.0 → audio2midi-0.15.0}/.gitignore +0 -0
- {audio2midi-0.14.0 → audio2midi-0.15.0}/.python-version +0 -0
- {audio2midi-0.14.0 → audio2midi-0.15.0}/src/audio2midi/__init__.py +0 -0
- {audio2midi-0.14.0 → audio2midi-0.15.0}/src/audio2midi/basic_pitch_pitch_detector.py +0 -0
- {audio2midi-0.14.0 → audio2midi-0.15.0}/src/audio2midi/crepe_pitch_detector.py +0 -0
- {audio2midi-0.14.0 → audio2midi-0.15.0}/src/audio2midi/crepe_pitch_detector_tf.py +0 -0
- {audio2midi-0.14.0 → audio2midi-0.15.0}/src/audio2midi/librosa_pitch_detector.py +0 -0
- {audio2midi-0.14.0 → audio2midi-0.15.0}/src/audio2midi/magenta_music_transcription.py +0 -0
- {audio2midi-0.14.0 → audio2midi-0.15.0}/src/audio2midi/melodia_pitch_detector.py +0 -0
- {audio2midi-0.14.0 → audio2midi-0.15.0}/src/audio2midi/mt3_music_transcription.py +0 -0
- {audio2midi-0.14.0 → audio2midi-0.15.0}/src/audio2midi/pop2piano.py +0 -0
- {audio2midi-0.14.0 → audio2midi-0.15.0}/src/audio2midi/py.typed +0 -0
- {audio2midi-0.14.0 → audio2midi-0.15.0}/src/audio2midi/violin_pitch_detector.py +0 -0
- {audio2midi-0.14.0 → audio2midi-0.15.0}/src/audio2midi/yourmt3_music_transcription.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: audio2midi
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.15.0
|
4
4
|
Summary: Audio To Midi
|
5
5
|
Author-email: dummyjenil <dummyjenil@gmail.com>
|
6
6
|
Provides-Extra: all
|
@@ -236,7 +236,7 @@ gr.TabbedInterface([
|
|
236
236
|
gr.Interface(CrepeTF(getenv("crepe_model_capacity","full")).predict,[gr.Audio(type="filepath",label="Input Audio"),gr.Checkbox(False,label="viterbi",info="Apply viterbi smoothing to the estimated pitch curve"),gr.Checkbox(True,label="center"),gr.Number(10,label="step size",info="The step size in milliseconds for running pitch estimation."),gr.Number(0.8,label="minimum confidence"),gr.Number(32,label="batch size")],gr.File(label="Midi File")),
|
237
237
|
gr.Interface(Pop2Piano(device).predict,[gr.Audio(label="Input Audio",type="filepath"),gr.Number(1, minimum=1, maximum=21, label="Composer"),gr.Number(2,label="Details in Piano"),gr.Number(1,label="Efficiency of Piano"),gr.Radio([1,2,4],label="steps per beat",value=2)],gr.File(label="MIDI File")),
|
238
238
|
gr.Interface(MT3(str(Path("mt3_model").absolute())).predict,[gr.Audio(label="Input Audio",type="filepath"),gr.Number(0,label="seed")],gr.File(label="MIDI File")),
|
239
|
-
gr.Interface(YMT3(hf_hub_download("shethjenil/Audio2Midi_Models",f"{
|
239
|
+
gr.Interface(YMT3(hf_hub_download("shethjenil/Audio2Midi_Models",f"{getenv("crepe_model_capacity","YMT3+")}.pt"),getenv("crepe_model_capacity","YMT3+"),"32" if str(device) == "cpu" else "16",device).predict,gr.gr.Audio(label="Input Audio",type="filepath"),gr.File(label="MIDI File")),
|
240
240
|
midi_viz_ui
|
241
241
|
],["Normal Pitch Detection","Guitar Based Pitch Detection","Melodia","Spotify Pitch Detection","Magenta Pitch Detection","Violin Based Pitch Detection","Crepe Pitch Detection","Crepe Pitch Detection TF","Pop2Piano","MT3","YourMT3","Midi Vizulizer"]).launch()
|
242
242
|
```
|
@@ -141,7 +141,7 @@ gr.TabbedInterface([
|
|
141
141
|
gr.Interface(CrepeTF(getenv("crepe_model_capacity","full")).predict,[gr.Audio(type="filepath",label="Input Audio"),gr.Checkbox(False,label="viterbi",info="Apply viterbi smoothing to the estimated pitch curve"),gr.Checkbox(True,label="center"),gr.Number(10,label="step size",info="The step size in milliseconds for running pitch estimation."),gr.Number(0.8,label="minimum confidence"),gr.Number(32,label="batch size")],gr.File(label="Midi File")),
|
142
142
|
gr.Interface(Pop2Piano(device).predict,[gr.Audio(label="Input Audio",type="filepath"),gr.Number(1, minimum=1, maximum=21, label="Composer"),gr.Number(2,label="Details in Piano"),gr.Number(1,label="Efficiency of Piano"),gr.Radio([1,2,4],label="steps per beat",value=2)],gr.File(label="MIDI File")),
|
143
143
|
gr.Interface(MT3(str(Path("mt3_model").absolute())).predict,[gr.Audio(label="Input Audio",type="filepath"),gr.Number(0,label="seed")],gr.File(label="MIDI File")),
|
144
|
-
gr.Interface(YMT3(hf_hub_download("shethjenil/Audio2Midi_Models",f"{
|
144
|
+
gr.Interface(YMT3(hf_hub_download("shethjenil/Audio2Midi_Models",f"{getenv("crepe_model_capacity","YMT3+")}.pt"),getenv("crepe_model_capacity","YMT3+"),"32" if str(device) == "cpu" else "16",device).predict,gr.gr.Audio(label="Input Audio",type="filepath"),gr.File(label="MIDI File")),
|
145
145
|
midi_viz_ui
|
146
146
|
],["Normal Pitch Detection","Guitar Based Pitch Detection","Melodia","Spotify Pitch Detection","Magenta Pitch Detection","Violin Based Pitch Detection","Crepe Pitch Detection","Crepe Pitch Detection TF","Pop2Piano","MT3","YourMT3","Midi Vizulizer"]).launch()
|
147
147
|
```
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|