├── .gitignore ├── .gitmodules ├── AudioFilePlayer.jucer ├── AudioFilePlayerScreenshot.png ├── LICENSE ├── README.md └── Source ├── AudioThumbnailComp.cpp ├── AudioThumbnailComp.h ├── PluginEditor.cpp ├── PluginEditor.h ├── PluginProcessor.cpp └── PluginProcessor.h /.gitignore: -------------------------------------------------------------------------------- 1 | Builds/ 2 | JuceLibraryCode/ 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathonracz/AudioFilePlayerPlugin/HEAD/.gitmodules -------------------------------------------------------------------------------- /AudioFilePlayer.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathonracz/AudioFilePlayerPlugin/HEAD/AudioFilePlayer.jucer -------------------------------------------------------------------------------- /AudioFilePlayerScreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathonracz/AudioFilePlayerPlugin/HEAD/AudioFilePlayerScreenshot.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathonracz/AudioFilePlayerPlugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathonracz/AudioFilePlayerPlugin/HEAD/README.md -------------------------------------------------------------------------------- /Source/AudioThumbnailComp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathonracz/AudioFilePlayerPlugin/HEAD/Source/AudioThumbnailComp.cpp -------------------------------------------------------------------------------- /Source/AudioThumbnailComp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathonracz/AudioFilePlayerPlugin/HEAD/Source/AudioThumbnailComp.h -------------------------------------------------------------------------------- /Source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathonracz/AudioFilePlayerPlugin/HEAD/Source/PluginEditor.cpp -------------------------------------------------------------------------------- /Source/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathonracz/AudioFilePlayerPlugin/HEAD/Source/PluginEditor.h -------------------------------------------------------------------------------- /Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathonracz/AudioFilePlayerPlugin/HEAD/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathonracz/AudioFilePlayerPlugin/HEAD/Source/PluginProcessor.h --------------------------------------------------------------------------------