https://github.com/cpmpercussion/microjam
A little app for experimenting with tiny musical performance.
https://github.com/cpmpercussion/microjam
mobile music nime research-project
Last synced: 7 months ago
JSON representation
A little app for experimenting with tiny musical performance.
- Host: GitHub
- URL: https://github.com/cpmpercussion/microjam
- Owner: cpmpercussion
- License: mit
- Created: 2016-10-12T13:41:11.000Z (almost 9 years ago)
- Default Branch: develop
- Last Pushed: 2022-10-05T22:48:42.000Z (about 3 years ago)
- Last Synced: 2023-08-13T13:11:50.608Z (about 2 years ago)
- Topics: mobile, music, nime, research-project
- Language: Swift
- Homepage: https://cpmpercussion.github.io/microjam
- Size: 72.6 MB
- Stars: 6
- Watchers: 3
- Forks: 0
- Open Issues: 19
-
Metadata Files:
- Readme: readme.md
- Contributing: CONTRIBUTING.md
- License: license.txt
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# MicroJam
[](https://zenodo.org/badge/latestdoi/70703690)
MicroJam is a mobile app for sharing tiny touch-screen performances. Mobile applications that streamline creativity and social interaction have enabled a very broad audience to develop their own creative practices. While these apps have been very successful in visual arts (particularly photography), the idea of social music-making has not had such a broad impact. MicroJam includes several novel performance concepts intended to engage the casual music maker and inspired by current trends in social creativity support tools. Touch-screen performances are limited to 5-seconds, instrument settings are posed as sonic "filters", and past performances are arranged as a timeline with replies and layers. These features of MicroJam encourage users not only to perform music more frequently, but to engage with others in impromptu ensemble music making.
## Research Goals
- encourage everyday music-making with smartphones
- investigate asynchronous and distributed smartphone performance
- create generative microjams to mimic user styles## Building
MicroJam is an iOS project written in Swift and using [`libpd`](https://github.com/libpd/libpd) for the audio backend and synthesis components. You should be able to build MicroJam by opening `microjam.xcworkspace` in Xcode (currently using 8.3.3).
Synthesis components can be found in the `synth` components and edited with [Pure Data](http://msp.ucsd.edu/software.html).
## Build instructions:
1. Install [homebrew](https://brew.sh).
2. Install Xcode 8 from Mac App Store.
3. Install Pure Data (`brew cask install pd`) and git (`brew install git`) and [Cocoapods](https://cocoapods.org/) (`brew install cocoapods`)
4. Clone project `git clone ...`
5. Install git submodules: `git submodule update --init --recursive`
6. Open up the main project workspace: `open microjam.xcworkspace` (n.b., `microjam.xcodeproj` will not have access to pods so will not build).
7. Build and test in simulator.## Development instructions:
- Use [branches for developing new features](http://nvie.com/posts/a-successful-git-branching-model/) all development happens on the `dev` branch.
- Follow [Swift/Xcode best practices](https://github.com/futurice/ios-good-practices).