├── .clang-format ├── .git-blame-ignore-revs ├── .gitattributes ├── .github └── workflows │ └── cmake_ctest.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── DevNotes.md ├── LICENSE ├── README.md ├── RELEASE.md ├── VERSION ├── icons ├── external-link.svg ├── harp_logo_1.png └── harp_logo_2.png ├── packaging ├── dmg.json └── package.sh ├── src ├── AppSettings.h ├── HarpLogger.cpp ├── HarpLogger.h ├── Main.cpp ├── MainComponent.h ├── Model.h ├── ThreadPoolJob.h ├── WebModel.h ├── client │ ├── Client.cpp │ ├── Client.h │ ├── GradioClient.cpp │ ├── GradioClient.h │ ├── StabilityClient.cpp │ ├── StabilityClient.h │ └── stability-controls.json ├── errors.h ├── external │ ├── fontaudio │ │ ├── data │ │ │ ├── FontAudioData.cpp │ │ │ ├── FontAudioData.h │ │ │ └── FontAudioIcons.h │ │ └── src │ │ │ ├── FontAudio.cpp │ │ │ └── FontAudio.h │ ├── fontawesome │ │ ├── data │ │ │ ├── FontAwesomeData.cpp │ │ │ ├── FontAwesomeData.h │ │ │ └── FontAwesomeIcons.h │ │ └── src │ │ │ ├── FontAwesome.cpp │ │ │ └── FontAwesome.h │ └── magic_enum.hpp ├── gui │ ├── ComboBoxWithLabel.h │ ├── CustomPathDialog.h │ ├── HoverHandler.cpp │ ├── HoverHandler.h │ ├── HoverableLabel.h │ ├── ModelAuthorLabel.h │ ├── MultiButton.cpp │ ├── MultiButton.h │ ├── SliderWithLabel.h │ ├── StatusComponent.cpp │ ├── StatusComponent.h │ └── TitledTextBox.h ├── media │ ├── AudioDisplayComponent.cpp │ ├── AudioDisplayComponent.h │ ├── MediaDisplayComponent.cpp │ ├── MediaDisplayComponent.h │ ├── MidiDisplayComponent.cpp │ ├── MidiDisplayComponent.h │ ├── OutputLabelComponent.cpp │ └── OutputLabelComponent.h ├── pianoroll │ ├── KeyboardComponent.cpp │ ├── KeyboardComponent.hpp │ ├── NoteGridComponent.cpp │ ├── NoteGridComponent.hpp │ ├── PianoRollComponent.cpp │ ├── PianoRollComponent.hpp │ └── SynthAudioSource.h ├── settings │ ├── AudioSettingsTab.cpp │ ├── AudioSettingsTab.h │ ├── GeneralSettingsTab.cpp │ ├── GeneralSettingsTab.h │ ├── LoginTab.cpp │ ├── LoginTab.h │ ├── SettingsBox.cpp │ └── SettingsBox.h ├── utils.h ├── widgets │ ├── ControlAreaWidget.h │ ├── MediaClipboardWidget.h │ └── TrackAreaWidget.h └── windows │ └── AboutWindow.h ├── test ├── 5-second.mp3 ├── Claves.wav ├── Guiro.wav ├── sad-cry.wav ├── test-w-gap-stereo.wav ├── test-w-gap.wav ├── test.mid └── test.wav └── website ├── .vitepress ├── config.mjs └── theme │ ├── Components │ └── Team.vue │ ├── index.js │ ├── style.css │ └── vars.css ├── README.md ├── content ├── HARP │ └── index.txt ├── contributing │ ├── add_model.md │ ├── build_source.md │ ├── debug.md │ ├── dist.md │ ├── overview.md │ └── version_compat.md ├── images │ ├── harp-hero.png │ ├── harp_empty.png │ ├── logic-bounce-in-place.png │ ├── logic_demucs_harp_demo.mp4 │ ├── logic_external_editor_video.mp4 │ ├── macos-install.png │ ├── new_harp_diagram.png │ └── pitch_shifter_example_pyharp.mp4 ├── install │ ├── linux.md │ ├── macos.md │ └── windows.md ├── intro.md ├── pyHARP │ └── index.txt ├── pyharp_docs │ ├── example.md │ ├── host.md │ ├── install.md │ ├── overview.md │ └── pyharp_app.md ├── setup │ ├── ableton.md │ ├── logic.md │ ├── mixcraft.md │ ├── reaper.md │ └── standalone.md ├── supported_os.md └── usage │ ├── models.md │ ├── partial_track.md │ ├── warnings.md │ └── workflow.md ├── index.md ├── package.json ├── pnpm-lock.yaml └── public └── logos ├── gradio-hf-combo.svg ├── gradio-logo.svg ├── harp_logo.png ├── hf-logo.png ├── hf-logo.svg ├── python-logo-only.png ├── python-logo-only.svg ├── pytorch-icon.svg ├── reaper-logo.png └── tensorflow_logo.svg /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/.clang-format -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | website/** linguist-vendored 2 | -------------------------------------------------------------------------------- /.github/workflows/cmake_ctest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/.github/workflows/cmake_ctest.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /DevNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/DevNotes.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/RELEASE.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 3.0.1 2 | -------------------------------------------------------------------------------- /icons/external-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/icons/external-link.svg -------------------------------------------------------------------------------- /icons/harp_logo_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/icons/harp_logo_1.png -------------------------------------------------------------------------------- /icons/harp_logo_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/icons/harp_logo_2.png -------------------------------------------------------------------------------- /packaging/dmg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/packaging/dmg.json -------------------------------------------------------------------------------- /packaging/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/packaging/package.sh -------------------------------------------------------------------------------- /src/AppSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/AppSettings.h -------------------------------------------------------------------------------- /src/HarpLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/HarpLogger.cpp -------------------------------------------------------------------------------- /src/HarpLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/HarpLogger.h -------------------------------------------------------------------------------- /src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/Main.cpp -------------------------------------------------------------------------------- /src/MainComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/MainComponent.h -------------------------------------------------------------------------------- /src/Model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/Model.h -------------------------------------------------------------------------------- /src/ThreadPoolJob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/ThreadPoolJob.h -------------------------------------------------------------------------------- /src/WebModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/WebModel.h -------------------------------------------------------------------------------- /src/client/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/client/Client.cpp -------------------------------------------------------------------------------- /src/client/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/client/Client.h -------------------------------------------------------------------------------- /src/client/GradioClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/client/GradioClient.cpp -------------------------------------------------------------------------------- /src/client/GradioClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/client/GradioClient.h -------------------------------------------------------------------------------- /src/client/StabilityClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/client/StabilityClient.cpp -------------------------------------------------------------------------------- /src/client/StabilityClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/client/StabilityClient.h -------------------------------------------------------------------------------- /src/client/stability-controls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/client/stability-controls.json -------------------------------------------------------------------------------- /src/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/errors.h -------------------------------------------------------------------------------- /src/external/fontaudio/data/FontAudioData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/external/fontaudio/data/FontAudioData.cpp -------------------------------------------------------------------------------- /src/external/fontaudio/data/FontAudioData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/external/fontaudio/data/FontAudioData.h -------------------------------------------------------------------------------- /src/external/fontaudio/data/FontAudioIcons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/external/fontaudio/data/FontAudioIcons.h -------------------------------------------------------------------------------- /src/external/fontaudio/src/FontAudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/external/fontaudio/src/FontAudio.cpp -------------------------------------------------------------------------------- /src/external/fontaudio/src/FontAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/external/fontaudio/src/FontAudio.h -------------------------------------------------------------------------------- /src/external/fontawesome/data/FontAwesomeData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/external/fontawesome/data/FontAwesomeData.cpp -------------------------------------------------------------------------------- /src/external/fontawesome/data/FontAwesomeData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/external/fontawesome/data/FontAwesomeData.h -------------------------------------------------------------------------------- /src/external/fontawesome/data/FontAwesomeIcons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/external/fontawesome/data/FontAwesomeIcons.h -------------------------------------------------------------------------------- /src/external/fontawesome/src/FontAwesome.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/external/fontawesome/src/FontAwesome.cpp -------------------------------------------------------------------------------- /src/external/fontawesome/src/FontAwesome.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/external/fontawesome/src/FontAwesome.h -------------------------------------------------------------------------------- /src/external/magic_enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/external/magic_enum.hpp -------------------------------------------------------------------------------- /src/gui/ComboBoxWithLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/gui/ComboBoxWithLabel.h -------------------------------------------------------------------------------- /src/gui/CustomPathDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/gui/CustomPathDialog.h -------------------------------------------------------------------------------- /src/gui/HoverHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/gui/HoverHandler.cpp -------------------------------------------------------------------------------- /src/gui/HoverHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/gui/HoverHandler.h -------------------------------------------------------------------------------- /src/gui/HoverableLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/gui/HoverableLabel.h -------------------------------------------------------------------------------- /src/gui/ModelAuthorLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/gui/ModelAuthorLabel.h -------------------------------------------------------------------------------- /src/gui/MultiButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/gui/MultiButton.cpp -------------------------------------------------------------------------------- /src/gui/MultiButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/gui/MultiButton.h -------------------------------------------------------------------------------- /src/gui/SliderWithLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/gui/SliderWithLabel.h -------------------------------------------------------------------------------- /src/gui/StatusComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/gui/StatusComponent.cpp -------------------------------------------------------------------------------- /src/gui/StatusComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/gui/StatusComponent.h -------------------------------------------------------------------------------- /src/gui/TitledTextBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/gui/TitledTextBox.h -------------------------------------------------------------------------------- /src/media/AudioDisplayComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/media/AudioDisplayComponent.cpp -------------------------------------------------------------------------------- /src/media/AudioDisplayComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/media/AudioDisplayComponent.h -------------------------------------------------------------------------------- /src/media/MediaDisplayComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/media/MediaDisplayComponent.cpp -------------------------------------------------------------------------------- /src/media/MediaDisplayComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/media/MediaDisplayComponent.h -------------------------------------------------------------------------------- /src/media/MidiDisplayComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/media/MidiDisplayComponent.cpp -------------------------------------------------------------------------------- /src/media/MidiDisplayComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/media/MidiDisplayComponent.h -------------------------------------------------------------------------------- /src/media/OutputLabelComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/media/OutputLabelComponent.cpp -------------------------------------------------------------------------------- /src/media/OutputLabelComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/media/OutputLabelComponent.h -------------------------------------------------------------------------------- /src/pianoroll/KeyboardComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/pianoroll/KeyboardComponent.cpp -------------------------------------------------------------------------------- /src/pianoroll/KeyboardComponent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/pianoroll/KeyboardComponent.hpp -------------------------------------------------------------------------------- /src/pianoroll/NoteGridComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/pianoroll/NoteGridComponent.cpp -------------------------------------------------------------------------------- /src/pianoroll/NoteGridComponent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/pianoroll/NoteGridComponent.hpp -------------------------------------------------------------------------------- /src/pianoroll/PianoRollComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/pianoroll/PianoRollComponent.cpp -------------------------------------------------------------------------------- /src/pianoroll/PianoRollComponent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/pianoroll/PianoRollComponent.hpp -------------------------------------------------------------------------------- /src/pianoroll/SynthAudioSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/pianoroll/SynthAudioSource.h -------------------------------------------------------------------------------- /src/settings/AudioSettingsTab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/settings/AudioSettingsTab.cpp -------------------------------------------------------------------------------- /src/settings/AudioSettingsTab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/settings/AudioSettingsTab.h -------------------------------------------------------------------------------- /src/settings/GeneralSettingsTab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/settings/GeneralSettingsTab.cpp -------------------------------------------------------------------------------- /src/settings/GeneralSettingsTab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/settings/GeneralSettingsTab.h -------------------------------------------------------------------------------- /src/settings/LoginTab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/settings/LoginTab.cpp -------------------------------------------------------------------------------- /src/settings/LoginTab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/settings/LoginTab.h -------------------------------------------------------------------------------- /src/settings/SettingsBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/settings/SettingsBox.cpp -------------------------------------------------------------------------------- /src/settings/SettingsBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/settings/SettingsBox.h -------------------------------------------------------------------------------- /src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/utils.h -------------------------------------------------------------------------------- /src/widgets/ControlAreaWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/widgets/ControlAreaWidget.h -------------------------------------------------------------------------------- /src/widgets/MediaClipboardWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/widgets/MediaClipboardWidget.h -------------------------------------------------------------------------------- /src/widgets/TrackAreaWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/widgets/TrackAreaWidget.h -------------------------------------------------------------------------------- /src/windows/AboutWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/src/windows/AboutWindow.h -------------------------------------------------------------------------------- /test/5-second.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/test/5-second.mp3 -------------------------------------------------------------------------------- /test/Claves.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/test/Claves.wav -------------------------------------------------------------------------------- /test/Guiro.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/test/Guiro.wav -------------------------------------------------------------------------------- /test/sad-cry.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/test/sad-cry.wav -------------------------------------------------------------------------------- /test/test-w-gap-stereo.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/test/test-w-gap-stereo.wav -------------------------------------------------------------------------------- /test/test-w-gap.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/test/test-w-gap.wav -------------------------------------------------------------------------------- /test/test.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/test/test.mid -------------------------------------------------------------------------------- /test/test.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/test/test.wav -------------------------------------------------------------------------------- /website/.vitepress/config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/.vitepress/config.mjs -------------------------------------------------------------------------------- /website/.vitepress/theme/Components/Team.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/.vitepress/theme/Components/Team.vue -------------------------------------------------------------------------------- /website/.vitepress/theme/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/.vitepress/theme/index.js -------------------------------------------------------------------------------- /website/.vitepress/theme/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/.vitepress/theme/style.css -------------------------------------------------------------------------------- /website/.vitepress/theme/vars.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/.vitepress/theme/vars.css -------------------------------------------------------------------------------- /website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/README.md -------------------------------------------------------------------------------- /website/content/HARP/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/content/HARP/index.txt -------------------------------------------------------------------------------- /website/content/contributing/add_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/content/contributing/add_model.md -------------------------------------------------------------------------------- /website/content/contributing/build_source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/content/contributing/build_source.md -------------------------------------------------------------------------------- /website/content/contributing/debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/content/contributing/debug.md -------------------------------------------------------------------------------- /website/content/contributing/dist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/content/contributing/dist.md -------------------------------------------------------------------------------- /website/content/contributing/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/content/contributing/overview.md -------------------------------------------------------------------------------- /website/content/contributing/version_compat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/content/contributing/version_compat.md -------------------------------------------------------------------------------- /website/content/images/harp-hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/content/images/harp-hero.png -------------------------------------------------------------------------------- /website/content/images/harp_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/content/images/harp_empty.png -------------------------------------------------------------------------------- /website/content/images/logic-bounce-in-place.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/content/images/logic-bounce-in-place.png -------------------------------------------------------------------------------- /website/content/images/logic_demucs_harp_demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/content/images/logic_demucs_harp_demo.mp4 -------------------------------------------------------------------------------- /website/content/images/logic_external_editor_video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/content/images/logic_external_editor_video.mp4 -------------------------------------------------------------------------------- /website/content/images/macos-install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/content/images/macos-install.png -------------------------------------------------------------------------------- /website/content/images/new_harp_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/content/images/new_harp_diagram.png -------------------------------------------------------------------------------- /website/content/images/pitch_shifter_example_pyharp.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/content/images/pitch_shifter_example_pyharp.mp4 -------------------------------------------------------------------------------- /website/content/install/linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/content/install/linux.md -------------------------------------------------------------------------------- /website/content/install/macos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/content/install/macos.md -------------------------------------------------------------------------------- /website/content/install/windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/content/install/windows.md -------------------------------------------------------------------------------- /website/content/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/content/intro.md -------------------------------------------------------------------------------- /website/content/pyHARP/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/content/pyHARP/index.txt -------------------------------------------------------------------------------- /website/content/pyharp_docs/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/content/pyharp_docs/example.md -------------------------------------------------------------------------------- /website/content/pyharp_docs/host.md: -------------------------------------------------------------------------------- 1 | # Hosting PyHARP Apps in the Cloud 2 | 3 | (Coming soon) -------------------------------------------------------------------------------- /website/content/pyharp_docs/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/content/pyharp_docs/install.md -------------------------------------------------------------------------------- /website/content/pyharp_docs/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/content/pyharp_docs/overview.md -------------------------------------------------------------------------------- /website/content/pyharp_docs/pyharp_app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/content/pyharp_docs/pyharp_app.md -------------------------------------------------------------------------------- /website/content/setup/ableton.md: -------------------------------------------------------------------------------- 1 | # Set Up HARP in Ableton Live 2 | 3 | *(Coming Soon)* 4 | -------------------------------------------------------------------------------- /website/content/setup/logic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/content/setup/logic.md -------------------------------------------------------------------------------- /website/content/setup/mixcraft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/content/setup/mixcraft.md -------------------------------------------------------------------------------- /website/content/setup/reaper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/content/setup/reaper.md -------------------------------------------------------------------------------- /website/content/setup/standalone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/content/setup/standalone.md -------------------------------------------------------------------------------- /website/content/supported_os.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/content/supported_os.md -------------------------------------------------------------------------------- /website/content/usage/models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/content/usage/models.md -------------------------------------------------------------------------------- /website/content/usage/partial_track.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/content/usage/partial_track.md -------------------------------------------------------------------------------- /website/content/usage/warnings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/content/usage/warnings.md -------------------------------------------------------------------------------- /website/content/usage/workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/content/usage/workflow.md -------------------------------------------------------------------------------- /website/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/index.md -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/package.json -------------------------------------------------------------------------------- /website/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/pnpm-lock.yaml -------------------------------------------------------------------------------- /website/public/logos/gradio-hf-combo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/public/logos/gradio-hf-combo.svg -------------------------------------------------------------------------------- /website/public/logos/gradio-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/public/logos/gradio-logo.svg -------------------------------------------------------------------------------- /website/public/logos/harp_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/public/logos/harp_logo.png -------------------------------------------------------------------------------- /website/public/logos/hf-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/public/logos/hf-logo.png -------------------------------------------------------------------------------- /website/public/logos/hf-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/public/logos/hf-logo.svg -------------------------------------------------------------------------------- /website/public/logos/python-logo-only.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/public/logos/python-logo-only.png -------------------------------------------------------------------------------- /website/public/logos/python-logo-only.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/public/logos/python-logo-only.svg -------------------------------------------------------------------------------- /website/public/logos/pytorch-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/public/logos/pytorch-icon.svg -------------------------------------------------------------------------------- /website/public/logos/reaper-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/public/logos/reaper-logo.png -------------------------------------------------------------------------------- /website/public/logos/tensorflow_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEAMuP-dev/HARP/HEAD/website/public/logos/tensorflow_logo.svg --------------------------------------------------------------------------------