Software Alternatives, Accelerators & Startups

Glicol

Graph-oriented live coding language and music/audio DSP library written in Rust.

Glicol

Glicol Reviews and Details

This page is designed to help you find out whether Glicol is good and if it is the right choice for you.

Screenshots and images

  • Glicol Landing page
    Landing page //
    2024-05-25

Features & Specs

  1. Performance

    Glicol is designed to be a high-performance language, making it suitable for real-time audio processing and synthesis, which is crucial for live performances and interactive installations.

  2. Simplicity

    The language syntax of Glicol is designed to be concise and easy to read, enabling quick understanding and allowing musicians and programmers to implement ideas rapidly without extensive boilerplate code.

  3. Integration

    Glicol can integrate well with various hardware and digital audio workstations (DAWs), offering flexibility in how it's used across different music production environments.

  4. Community and Support

    Glicol has a supportive and growing community which can be beneficial for those needing help or seeking collaboration on projects.

Badges

Promote Glicol. You can add any of these badges on your website.

SaaSHub badge
Show embed code
SaaSHub badge
Show embed code

Videos

We don't have any videos for Glicol yet.

Social recommendations and mentions

We have tracked the following product recommendations or mentions on various public social media platforms and blogs. They can help you see what people think about Glicol and what they use it for.
  • Sonic Pi v5 Released
    Congratulations on your release, Sam! Are you still considering hardware demos, such as those on Raspberry Pi? If anyone here also wants to try a different syntax, check out http://glicol.org/. - Source: Hacker News / 5 days ago
  • Introduction to Computer Music [pdf]
    Note: Nick Collins and Alex McLean created Algorave. The time I spent learning from the Algorave community was crucial to my later work on Glicol (https://glicol.org/). Btw, I have a feeling that if you want to learn about computer music, you can send the PDF to LLM and ask what the chapter is about and how to represent it using csound or supercollider. My experience is that with computer music, you have to keep... - Source: Hacker News / 4 months ago
  • Embassy: Modern embedded framework, using Rust and async
    I'm rewriting glicol (https://glicol.org/) with no std, and embassy-rs + 2350 is my go-to choice. Highly recommand this stack if you're planning to start working with embedded systems in 2026. - Source: Hacker News / 7 months ago
  • Programming Languages Used for Music
    Relevant to this discussion - my project Glicol (https://glicol.org) addresses this space. Currently working on a no_std rewrite, demo coming next year :). - Source: Hacker News / 8 months ago
  • Show HN: MTXT โ€“ Music Text Format
    Some simple thoughts: I feel that one challenge of programming languages is how to remember these rules, formats, and keywords. Even if you're using familiar formats like YAML or JSON, how do you match keywords? When developing Glicol (http://glicol.org/), I found that if it's based on an audio graph, all node inputs and outputs are all signals, which at least reduces the matching problems. The remaining... - Source: Hacker News / 8 months ago
  • Show HN: I built a synth for my daughter
    Great finish. I was busy designing and soldering the prototype synthesizer during the summer, but I had to put it on hold because my baby was born in September. I had the same problem back then: injection molding is quite expensive to start. But you could consider a more creative approach: using a PCB directly as the panel, such as a TE's Pocket Operator. Alternatively, you could use 3D printing; there are many... - Source: Hacker News / 9 months ago
  • Show HN: I made a generative online drum machine with ClojureScript
    " when you have more and more interactions on the gui web audio api will become a problem, check out audioworklet. I am developing https://glicol.org/ and it has a js port on https://glicol.js.org/ a typical usecase is drum machine with very high time accuracy. - Source: Hacker News / 11 months ago
  • JavaScript retro sound effects generator
    Love the wav download option I tried to create a tone in Glicol (https://glicol.org/) with some random idea there and it works quite well: ```. - Source: Hacker News / about 1 year ago
  • Experimental imperative-style music sequence generator engine
    Renoise is super cool. If you're interested in live coding, you might also want to check out Glicol (https://glicol.org). Its parser and audio engine are also implemented purely in Rust, and it supports declarative, dynamic updates. A no_std version for embedded systems is also in development. - Source: Hacker News / about 1 year ago
  • Sapf: New Music Language Inspired by Supercollider, APL, and Forth [video]
    I have starred this language for a while. I considered similar form when I designed the Glicol syntax, but I still wanted it to be more readable in live performance. If you are looking for a language that can be used on Linux, you might want to try Glicol: https://glicol.org/ You can use it directly through wasm on the web page, and there is also a cli version: - Source: Hacker News / about 1 year ago
  • Brian Eno's Theory of Democracy
    Reading about Eno's ideas on organization and variety makes me want to share some perspectives directly from my experience with music performance practice, specifically in live coding. For a long time, the common practice in live coding, which you might see on platforms like Flok.cc (https://flok.cc) supporting various interesting languages, has been like this: Everyone gets their own 'space' or editor. From... - Source: Hacker News / over 1 year ago
  • Show HN: Beatsync โ€“ perfect audio sync across multiple devices
    Have you considered using webtransport? When I was developing Glicol (https://glicol.org/) sync, the main challenge is network jitter. Had to remove it eventually. Furthermore, have you factored in the synchronization as perceived by the listener? Also, it seems system-level differences, particularly in audio output latency across various OS and hardware setups, would need to be considered. What I mean is, the... - Source: Hacker News / over 1 year ago
  • Migrating Away from Rust
    I completely understand, and it's not the first time I've heard of people switching from Bevy to Unity. Btw Bevy 0.16 just came out in case you missed the discussion: https://news.ycombinator.com/item?id=43787012) after 2 years. I start from embedded devices, switching to crates like Chumsky, and I feel the ecosystem has improved a lot compared to before. So I still have 100% confidence in Rust. - Source: Hacker News / over 1 year ago
  • Ask HN: What are you working on? (April 2025)
    After trying to start a business for a year, I basically gave up negotiating with VCs. My current goal is to spend half of my time on the development and maintenance of open source projects, such as Glicol (https://glicol.org/). The other half of my time is to do some profitable business. I just found that the VC model is not suitable for my current situation. - Source: Hacker News / over 1 year ago
  • Graphics Livecoding in Common Lisp
    There are similar trends in music and sound art, which can be experienced with Glicol (https://glicol.org/) as well as many other languages here: https://github.com/toplap/awesome-livecoding. - Source: Hacker News / over 1 year ago
  • Variable duty cycle square waves with the Web Audio API
    For that case I guess AudioWorklet would be a more recommanded way to experiment you might also be interested in Glicol (https://glicol.org/) especially this example: https://glicol.org/tour#meta2 it's rust -> wasm -> sab -> audioworklet. - Source: Hacker News / over 1 year ago
  • The demoscene as a UNESCO heritage in Sweden
    Really interesting to read about this! That's wonderful validation for a vital digital culture and its heritage. As the creator of Glicol (https://glicol.org/), based in Oslo and working in the digital arts space, I'm always fascinated by how different countries foster creative technology. Sweden's approach in recognizing the demoscene this way is particularly encouraging. It makes me reflect on the pathways to... - Source: Hacker News / over 1 year ago
  • Show HN: I built website for sharing Drum Patterns
    I would be happy to port some patterns to Glicol (https://glicol.org/) only suggestion: support https... - Source: Hacker News / over 1 year ago
  • Show HN: I made a Sonic Pi MCP to create music with prompts
    I am also working on MCP for Glicol (https://glicol.org/). But I think Gemini's multimodality may be more suitable than Claude. - Source: Hacker News / over 1 year ago
  • Adults can learn perfect pitch
    Limut implements WebAudio and WebGL, and FoxDot-like patterns and samples: https://github.com/sdclibbery/limut https://Draw.Audio/ "Using the Web Audio API to Make a Modem" (2017). - Source: Hacker News / over 1 year ago
  • Hedy: Textual Programming Made Easy
    Love the mission! My project Glicol (https://glicol.org/) also has a lot of classroom practice. But I think what children need most is to provide very simple to complex examples for modification. - Source: Hacker News / over 1 year ago

Do you know an article comparing Glicol to other products?
Suggest a link to a post with product alternatives.

Suggest an article

Glicol discussion

Log in or Post with
  1. Dmitry avatar
    Dmitry
    ยท over 2 years ago
    ยท Reply

    Amazing project!

Is Glicol good? This is an informative page that will help you find out. Moreover, you can review and discuss Glicol here. The primary details have not been verified within the last quarter, and they might be outdated. If you think we are missing something, please use the means on this page to comment or suggest changes. All reviews and comments are highly encouranged and appreciated as they help everyone in the community to make an informed choice. Please always be kind and objective when evaluating a product and sharing your opinion.