https://github.com/mikezaby/blibliki
Schema-driven audio engine for Web and Node
https://github.com/mikezaby/blibliki
audio audio-engine modularsynth webaudio
Last synced: 5 months ago
JSON representation
Schema-driven audio engine for Web and Node
- Host: GitHub
- URL: https://github.com/mikezaby/blibliki
- Owner: mikezaby
- Created: 2024-03-21T21:06:44.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2026-01-23T16:50:50.000Z (5 months ago)
- Last Synced: 2026-01-24T07:25:37.816Z (5 months ago)
- Topics: audio, audio-engine, modularsynth, webaudio
- Language: TypeScript
- Homepage: http://www.blibliki.com
- Size: 4.11 MB
- Stars: 30
- Watchers: 1
- Forks: 0
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Blibliki
## Overview
Blibliki is a web audio project that provides a framework for building synthesizers and audio applications. This monorepo contains multiple packages that work together to create a complete audio development ecosystem.
## Key Packages
### [Engine](/packages/engine)
The core audio engine built directly on the Web Audio API. It provides a modular, data-driven approach to audio synthesis with support for:
- Oscillators, filters, envelopes, and other audio modules
- MIDI device integration
- Polyphonic synthesis
- Node.js compatibility
[Learn more about the Engine](/packages/engine)
### [Transport](/packages/transport)
A musical transport and scheduler built on top of the Web Audio API. It provides precise timing and musical coordination for audio applications with support for:
- Musical time signatures and BPM control
- Event scheduling and generation
- Swing and groove quantization
- Transport controls (play/stop/reset)
- Musical position tracking
[Learn more about Transport](/packages/transport)
### [Grid](/apps/grid)
A visual interface for the Blibliki Engine that allows users to create and connect audio modules through an intuitive drag-and-drop interface. Features include:
- Visual patching of audio modules
- Real-time parameter control
- MIDI device connectivity
- Patch saving and loading
- User authentication
[Learn more about Grid](/apps/grid)
## Project Structure
```
blibliki/
├── apps/ # Applications
│ ├── demo/ # Simple demo application
│ └── grid/ # Main visual interface
├── packages/ # Libraries and utilities
│ ├── engine/ # Core audio engine
│ ├── utils/ # Shared utilities
│ └── [other]/ # Additional packages
├── pnpm-workspace.yaml # Workspace configuration
└── package.json # Root package configuration
```
## Getting Started
This project uses PNPM for package management and workspace handling.
```bash
# Install dependencies
pnpm install
# Start development servers for all packages
pnpm dev
# Build all packages
pnpm build
```
## Development
Each package has its own README with specific development instructions. In general:
- The engine package can be developed independently
- The grid application depends on the engine package
- Changes to shared packages require rebuilding dependent packages
## Contributing
Contributions are welcome! Please feel free to submit issues or pull requests.
## License
MIT