All Projects → hzdgopher → 64klang

hzdgopher / 64klang

Licence: mit
Official 64klang repository

Projects that are alternatives of or similar to 64klang

Axiom
A powerful realtime node-based audio synthesizer.
Stars: ✭ 599 (+179.91%)
Mutual labels:  demoscene, synthesizer
4klang
Official 4klang repository
Stars: ✭ 137 (-35.98%)
Mutual labels:  demoscene, synthesizer
Wavepad
An experimental synthesizer built using the Web Audio API (PWA).
Stars: ✭ 126 (-41.12%)
Mutual labels:  synthesizer
Geonkick
A free software percussion synthesizer for GNU/Linux
Stars: ✭ 187 (-12.62%)
Mutual labels:  synthesizer
Supriya
A Python API for SuperCollider
Stars: ✭ 167 (-21.96%)
Mutual labels:  synthesizer
Vna
Under development open hardware microwave vector network analyzer
Stars: ✭ 140 (-34.58%)
Mutual labels:  synthesizer
Gbt Player
A music player library for Game Boy.
Stars: ✭ 180 (-15.89%)
Mutual labels:  demoscene
Arduinoopl2
Arduino library for use with the OPL2 board (YM3812) and OPL3Duo (YMF262)
Stars: ✭ 117 (-45.33%)
Mutual labels:  synthesizer
Otto
Sampler, Sequencer, Multi-engine synth and effects - in a box! [WIP]
Stars: ✭ 2,390 (+1016.82%)
Mutual labels:  synthesizer
Atari st sources
A large repository of Atari ST (and family) source code
Stars: ✭ 157 (-26.64%)
Mutual labels:  demoscene
Lambdacube Edsl
Previous version of LambdaCube 3D as Embedded Domain Specific Language in Haskell. Check the latest system:
Stars: ✭ 186 (-13.08%)
Mutual labels:  demoscene
Jsyn
Modular audio synthesizer library with unit generators in Java
Stars: ✭ 157 (-26.64%)
Mutual labels:  synthesizer
Fsynth
Web-based and pixels-based collaborative synthesizer
Stars: ✭ 146 (-31.78%)
Mutual labels:  synthesizer
Wavesabre
Official WaveSabre repository
Stars: ✭ 180 (-15.89%)
Mutual labels:  demoscene
Javascriptmusic
Live coding music and synthesis in Javascript / AssemblyScript (WebAssembly)
Stars: ✭ 193 (-9.81%)
Mutual labels:  synthesizer
Lick
LiCK, Library for ChucK
Stars: ✭ 118 (-44.86%)
Mutual labels:  synthesizer
Sonant X
Small JavaScript synthesizer library
Stars: ✭ 154 (-28.04%)
Mutual labels:  synthesizer
Shaden
🎧 A modular audio synthesizer.
Stars: ✭ 175 (-18.22%)
Mutual labels:  synthesizer
Vlee
very last engine ever
Stars: ✭ 204 (-4.67%)
Mutual labels:  demoscene
Eegsynth
Converting real-time EEG into sounds, music and visual effects
Stars: ✭ 196 (-8.41%)
Mutual labels:  synthesizer

64klang

Official 64klang repository

For discussion or feedback please use our #64klang channel on Slack: https://64klang.slack.com

Summary

64klang is a modular, nodegraph based software synthesizer package intended to easily produce music for 64k intros (small executables with a maximum filesize of 65536 bytes containing realtime audio and visuals) or 32k executable music.

It consists of a VSTi plugin, a few example songs/instruments, as well as an example C project showing how to include it in your code for playback.

The repository contains the folders:

  • VSTiPlugin (containing a .zip file with the precompiled VST plugin and example instruments/songs)
  • Player (an example player project for using the exported files by the plugin)

IMPORTANT:

  • You MUST add the directory with the VST DLLs to the system PATH environment variable (if you dont 64klang wont load or be listed in your DAW)
  • If 64klang2 is still not listed in your DAW, check the file properties of all 64klang dlls with Windows Explorer. Depending on the Windows security settings the execution might be prevented. So if you see an "Unblock" button in the dll file properties (see image below) please click it.
    64klang image

The 64klang2 VSTi plugin is currently 32bit only, so if possible use a 32bit DAW, 64bit DAWs and bridging will most likely lead to crashes sooner or later.

32bit DAW compatibibility list:

  • Renoise
  • Cubase
  • Ableton Live
  • Reaper

For additional requirements and usage instructions PLEASE check the readme.txt in the .zip file.

Mostly keep in mind it is targeted for demoscene usage, which is the reason it acts as a singleton plugin managing ALL 16 midi channels in the same instance.

The player project here is based on Visual Studio 2015, so that and above should compile out of the box.

64klang image

Examples

Some 64k intros using 64klang:

Some 32k exe music tracks using 64klang and experiments (by Paul Kraus (pOWL) and Jochen Feldkötter (Virgill)):

History

64klang is the big brother of 4klang ( https://github.com/hzdgopher/4klang ) And this version here is actually the second incarnation of 64klang, thats also why the VST is called 64klang2.

The first version of 64klang was created around 2010/2011 and was created specifically for use in a 64k intro together with Fairlight ( http://www.pouet.net/prod.php?which=57449 ).

It was literally an extended 4klang, just extending the concept of a signal stack to a more generic and understandable nodegraph. The synth core was build around the 4klang codebase and completely written in Assembler, the GUI was a raped native Win32 GUI with lots of dialog boxes connected by some spline curves (and no zooming capabilities).

It did its job, and convinced me of the nodegraph concept for a modular synth, but was simply not maintainable/extendable, not to speak of the usability of the GUI. So i took the good ideas from that and started again.

Most of the development of the new 64klang2 was done between 2012 and 2014, and since then once in a while some additions/fixes or requests were implemented. The current version has a C++ based synth core making heavy use of SSE4.1 instructions and for GUI i chose .NET WPF.

The probably quite unique thing about 64klang is its ability to have basically unlimited options to connect things for sound creation and processing. The complete nodegraph is evaluated per sample, which makes it possible to even do sample exact feedback loops and offers options such as physical modelling (delay based) on top of the usual AM, FM, subtracive synthesis.

And now that it has been used in some 64k productions and 32k exemusic tracks it is finally time to relese it to the public.

Credits

64klang was developed by
Dominik Ries (gopher / Alcatraz).

Special thanks go out to Ralph Borson ( https://github.com/revivalizer ). I stumbeled upon his blog just at the time where i needed inspiration on how to get the needed performance in the new 64klang. Unfortunately his blog seems to be down nowadays, still, these were the links i am grateful for:

http://revivalizer.dk/blog/2013/07/26/art-of-softsynth-development-simd-parallelization/ http://revivalizer.dk/blog/2013/07/28/art-of-softsynth-development-using-sse-in-c-plus-plus-without-the-hassle/

Also 64klang would not be in its current state withou the help and input of many talented friends and demosceners (just to name a few):

pOWL, virgill, xtr1m, muhmac, reed, jco, punqtured, ...

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].