All Projects → mimic-sussex → Sema

mimic-sussex / Sema

Licence: mit
Sema – Live Code Language Design Playground

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Sema

Superdirt
Tidal Audio Engine
Stars: ✭ 309 (+286.25%)
Mutual labels:  live-coding, signal-processing
glicol
(Audio) graph-oriented live coding language and music DSP library written in Rust
Stars: ✭ 853 (+966.25%)
Mutual labels:  live-coding, web-audio
Gs Wa Components
The audio code behind the GridSound's DAW
Stars: ✭ 38 (-52.5%)
Mutual labels:  web-audio
Aca Code
Matlab scripts accompanying the book "An Introduction to Audio Content Analysis" (www.AudioContentAnalysis.org)
Stars: ✭ 67 (-16.25%)
Mutual labels:  signal-processing
Sonic Pi
Code. Music. Live.
Stars: ✭ 8,736 (+10820%)
Mutual labels:  live-coding
Jarmlib
jarmlib is Jack Armitage's (mostly TidalCycles) live coding library
Stars: ✭ 42 (-47.5%)
Mutual labels:  live-coding
Pywt
PyWavelets - Wavelet Transforms in Python
Stars: ✭ 1,098 (+1272.5%)
Mutual labels:  signal-processing
Asterics
The Assistive Technology Rapid Integration & Construction Set
Stars: ✭ 34 (-57.5%)
Mutual labels:  signal-processing
Wits
A Node.js library that reads your mind with Emotiv EPOC EEG headset
Stars: ✭ 73 (-8.75%)
Mutual labels:  signal-processing
Qt Interactive Coding
C++ interactive / live coding with Qt
Stars: ✭ 49 (-38.75%)
Mutual labels:  live-coding
Savitzky Golay
Computes the Savitzky-Golay Filter coefficients
Stars: ✭ 60 (-25%)
Mutual labels:  signal-processing
Eulerian Remote Heartrate Detection
Remote heart rate detection through Eulerian magnification of face videos
Stars: ✭ 48 (-40%)
Mutual labels:  signal-processing
8d Audio
Some dsp to make songs "8D"
Stars: ✭ 43 (-46.25%)
Mutual labels:  signal-processing
Mud
MUD is a layer over Overtone to make live composition more powerful and immediate.
Stars: ✭ 58 (-27.5%)
Mutual labels:  live-coding
Strugatzki
Algorithms for matching audio file similarities. Mirror of https://git.iem.at/sciss/Strugatzki
Stars: ✭ 38 (-52.5%)
Mutual labels:  signal-processing
Web Audio Javascript Webassembly Sdk Interactive Audio
🌐 Superpowered Web Audio JavaScript and WebAssembly SDK for modern web browsers. Allows developers to implement low-latency interactive audio features into web sites and web apps with a friendly Javascript API. https://superpowered.com
Stars: ✭ 68 (-15%)
Mutual labels:  web-audio
Alignmentduration
Lyrics-to-audio-alignement system. Based on Machine Learning Algorithms: Hidden Markov Models with Viterbi forced alignment. The alignment is explicitly aware of durations of musical notes. The phonetic model are classified with MLP Deep Neural Network.
Stars: ✭ 36 (-55%)
Mutual labels:  signal-processing
Wafxr
sound effects for the web
Stars: ✭ 47 (-41.25%)
Mutual labels:  web-audio
Pink Trombone
A programmable version of Neil Thapen's Pink Trombone
Stars: ✭ 54 (-32.5%)
Mutual labels:  web-audio
Tensorflow Signal Processing
doing audio digital signal processing in tensorflow to try to recreate digital audio effects
Stars: ✭ 76 (-5%)
Mutual labels:  signal-processing

Sema – Live Code Language Design Playground

version stability-experimental PRs Welcome Build Status Website GitHub license


Sema is a playground where you can rapidly prototype live coding mini-languages for signal synthesis, machine learning and machine listening.

Sema aims to provide an online integrated environment for designing both abstract high-level languages and more powerful low-level languages.

Sema implements a set of core design principles:

  • Integrated signal engine – There is no conceptual split between the language and signal engine. Everything is a signal.

  • Single sample signal processing – Per-sample sound processing for supporting techniques that use feedback loops, such as physical modelling, reverberation and IIR filtering.

  • Sample rate transduction – It is simpler to do signal processing with one principal sample rate, the audio rate. Different sample rate requirements of dependent objects can be resolved by upsampling and downsampling, using a transducer. The transducer concept enables us to accommodate a variety of processes with varying sample rates (video, spectral rate, sensors, ML model inference) within a single engine.

  • Minimal abstractions – There are no high-level abstractions such as buses, synths, nodes, servers, or any language scaffolding in our signal engine. Such abstractions sit within the end-user language design space.

Dependencies

Sema requires the following dependencies to be installed:

How to build and run the Sema playground on your machine

If you decide to use NPM, use:

$ cd sema
$ npm install
$ npm run build
$ npm run dev OR npm run serve 

If you decide to go with Yarn (our preferred package manager), to install it:

$ npm install -g yarn

To use Yarn:

$ cd sema
$ yarn
$ yarn build
$ yarn dev OR yarn serve 

Once you have the node application running, open Sema on your browser on the following ports

Linux Users

Sema uses Web Audio API Audio Worklets. Their performance seems very sensitive to CPU power scaling. If you are experiencing sound quality issues, try setting the CPU governor to performance mode. e.g on Ubuntu,

$ cpupower frequency-set --governor performance

Documentation

Default Livecoding Language

Sema Intermediate Language

Maximilian DSP API

Javascript Editor Utils

Publications

Bernardo, F., Kiefer, C., Magnusson, T. (forthcoming). A Signal Engine for a Live Code Language Ecosystem. Journal of Audio Engineering Society, Vol. 68, No. 1, October

Bernardo, F., Kiefer, C., Magnusson, T. (2020). Designing for a Pluralist and User-Friendly Live Code Language Ecosystem with Sema. 5th International Conference on Live Coding, University of Limerick, Limerick, Ireland

Bernardo, F., Kiefer, C., Magnusson, T. (2019). An AudioWorklet-based Signal Engine for a Live Coding Language Ecosystem. In Proceedings of Web Audio Conference 2019, Norwegian University of Science and Technology (NTNU), Trondheim, Norway (Best Paper Award at Web Audio Conference 2019)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].