├── .gitattributes ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .pylintrc ├── LICENSE ├── Melodfy.spec ├── README.md ├── assets ├── main3.png ├── main4.png ├── melodfy_banner.png ├── melodfy_banner_cropped.png ├── melodfy_logo1.png ├── melodfy_logo_rounded.ico └── melodfy_logo_rounded.png ├── config.py ├── inference.py ├── main.py ├── mainui.py ├── mainui.ui ├── models └── model.onnx ├── piano_vad.py ├── pyproject.toml ├── requirements.txt ├── setup.py └── utilities.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HemantKArya/Melodfy/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HemantKArya/Melodfy/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HemantKArya/Melodfy/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- 1 | extension-pkg-whitelist=PySide6 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HemantKArya/Melodfy/HEAD/LICENSE -------------------------------------------------------------------------------- /Melodfy.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HemantKArya/Melodfy/HEAD/Melodfy.spec -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HemantKArya/Melodfy/HEAD/README.md -------------------------------------------------------------------------------- /assets/main3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HemantKArya/Melodfy/HEAD/assets/main3.png -------------------------------------------------------------------------------- /assets/main4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HemantKArya/Melodfy/HEAD/assets/main4.png -------------------------------------------------------------------------------- /assets/melodfy_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HemantKArya/Melodfy/HEAD/assets/melodfy_banner.png -------------------------------------------------------------------------------- /assets/melodfy_banner_cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HemantKArya/Melodfy/HEAD/assets/melodfy_banner_cropped.png -------------------------------------------------------------------------------- /assets/melodfy_logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HemantKArya/Melodfy/HEAD/assets/melodfy_logo1.png -------------------------------------------------------------------------------- /assets/melodfy_logo_rounded.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HemantKArya/Melodfy/HEAD/assets/melodfy_logo_rounded.ico -------------------------------------------------------------------------------- /assets/melodfy_logo_rounded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HemantKArya/Melodfy/HEAD/assets/melodfy_logo_rounded.png -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HemantKArya/Melodfy/HEAD/config.py -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HemantKArya/Melodfy/HEAD/inference.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HemantKArya/Melodfy/HEAD/main.py -------------------------------------------------------------------------------- /mainui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HemantKArya/Melodfy/HEAD/mainui.py -------------------------------------------------------------------------------- /mainui.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HemantKArya/Melodfy/HEAD/mainui.ui -------------------------------------------------------------------------------- /models/model.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HemantKArya/Melodfy/HEAD/models/model.onnx -------------------------------------------------------------------------------- /piano_vad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HemantKArya/Melodfy/HEAD/piano_vad.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HemantKArya/Melodfy/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HemantKArya/Melodfy/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HemantKArya/Melodfy/HEAD/setup.py -------------------------------------------------------------------------------- /utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HemantKArya/Melodfy/HEAD/utilities.py --------------------------------------------------------------------------------