Cytomic 'The Glue' Compressor

VST, AU, AAX, CLAP, etc. Plugin Virtual Effects Discussion
RELATED
PRODUCTS
The Glue

Post

What is the last version of The Glue that works on Windows 7?

Post

andy-cytomic wrote: Tue Nov 05, 2024 5:41 pm I've spent the last couple of weeks doing a bit of R&D work getting the symbolic simplification engine updated taking care of some more difficult cases, and the results are stunning. I've applied these to The Scream with excellent results, making it lower cpu and more robust than before. After another couple videos it's time to begin work on The Glue v2, very exciting! Thanks for hanging in there everyone.
What is this "symbolic simplification engine"? :?: :!:
A well-behaved signature.

Post

Medenka wrote: Tue Nov 12, 2024 12:49 pm What is the last version of The Glue that works on Windows 7?
I'm not sure when Windows 7 stopped working with my builds, but it is no longer supported. There are lots of old installers still available and it will still run as well as it ever did for the versions that ran on it. You'll have to use the Manual Authorisation method and login to your Cytomic account and enter the challenge code to download the authorisation file.

= The Glue URLS to all old versions

16 Apr 2015 https://cytomic.com/files/TheGlue_v1.3.12_Mac.dmg
18 Apr 2015 https://cytomic.com/files/TheGlue_v1.3.12_Mac_10.6.dmg
16 Apr 2015 https://cytomic.com/files/TheGlue_v1.3.12_Win.zip
17 Jul 2017 https://cytomic.com/files/TheGlue_v1.3.19_Mac.dmg
17 Jul 2017 https://cytomic.com/files/TheGlue_v1.3.19_Mac_10.6.dmg
17 Jul 2017 https://cytomic.com/files/TheGlue_v1.3.19_Win.zip
22 Dec 2021 https://cytomic.com/files/TheGlue_v1.5.0_Mac.dmg
22 Dec 2021 https://cytomic.com/files/TheGlue_v1.5.0_Win.zip
4 Feb 2022 https://cytomic.com/files/TheGlue_v1.5.1_Mac.dmg
4 Feb 2022 https://cytomic.com/files/TheGlue_v1.5.1_Win.zip
6 Feb 2022 https://cytomic.com/files/TheGlue_v1.5.2_Mac.dmg
5 Feb 2022 https://cytomic.com/files/TheGlue_v1.5.2_Win.zip
9 Feb 2022 https://cytomic.com/files/TheGlue_v1.5.3_Mac.dmg
11 Feb 2022 https://cytomic.com/files/TheGlue_v1.5.3_Win.zip
15 Feb 2022 https://cytomic.com/files/TheGlue_v1.5.4_Mac.dmg
15 Feb 2022 https://cytomic.com/files/TheGlue_v1.5.4_Win.zip
16 Feb 2022 https://cytomic.com/files/TheGlue_v1.5.5_Mac.dmg
16 Feb 2022 https://cytomic.com/files/TheGlue_v1.5.5_Win.zip
20 Apr 2022 https://cytomic.com/files/TheGlue_v1.5.6_Mac.dmg
20 Apr 2022 https://cytomic.com/files/TheGlue_v1.5.6_Win.zip
16 May 2022 https://cytomic.com/files/TheGlue_v1.5.8_Mac.dmg
16 May 2022 https://cytomic.com/files/TheGlue_v1.5.8_Win.zip
12 Dec 2022 https://cytomic.com/files/TheGlue_v1.5.10_Mac.dmg
11 Dec 2022 https://cytomic.com/files/TheGlue_v1.5.10_Win.zip
12 Dec 2022 https://cytomic.com/files/TheGlue_v1.5.11_Mac.dmg
12 Dec 2022 https://cytomic.com/files/TheGlue_v1.5.11_Win.zip
9 Jun 2023 https://cytomic.com/files/TheGlue_v1.5.12_Win.zip
11 Jun 2023 https://cytomic.com/files/TheGlue_v1.6.5_Mac.dmg
11 Jun 2023 https://cytomic.com/files/TheGlue_v1.6.5_Win.zip
12 Jun 2023 https://cytomic.com/files/TheGlue_v1.6.6_Mac.dmg
12 Jun 2023 https://cytomic.com/files/TheGlue_v1.6.6_Win.zip
15 Jun 2023 https://cytomic.com/files/TheGlue_v1.6.7_Mac.dmg
15 Jun 2023 https://cytomic.com/files/TheGlue_v1.6.7_Win.zip
16 Jun 2023 https://cytomic.com/files/TheGlue_v1.6.8_Mac.dmg
16 Jun 2023 https://cytomic.com/files/TheGlue_v1.6.8_Win.zip
The Glue, The Drop, The Scream - www.cytomic.com

Post

JerGoertz wrote: Tue Nov 12, 2024 1:41 pm What is this "symbolic simplification engine"? :?: :!:
All Cytomic core analog modelling DSP is handled by an automated symbolic circuit solver and optimised code generator that uses symbolic expressions throughout. This way expressions can be simplified by standard algebraic rules, which is essential to automate optimisations. For example

Code: Select all

a*b + a*c -> a*(b + c)
and you just saved one multiply. These simplifications, along with working out which bits can be pre-computed, add up to lots of savings on cpu. This makes it possible for Cytomic to do in depth and detailed circuit models but still be reasonable on the cpu.

The rabbit hole goes a lot deeper, but that gives you the general idea. For more info you can check out the technical papers section of the Cytomic web page, in particular there is an Audio Developer Conference (ADC) talk I gave linked at the top of the page called "From Circuit to Code: Under the Hood of Analog Modelling" -

https://cytomic.com/technical-papers/
The Glue, The Drop, The Scream - www.cytomic.com

Post

andy-cytomic wrote: Wed Nov 13, 2024 1:41 am
JerGoertz wrote: Tue Nov 12, 2024 1:41 pm What is this "symbolic simplification engine"? :?: :!:
All Cytomic core analog modelling DSP is handled by an automated symbolic circuit solver and optimised code generator that uses symbolic expressions throughout. This way expressions can be simplified by standard algebraic rules, which is essential to automate optimisations. For example

Code: Select all

a*b + a*c -> a*(b + c)
and you just saved one multiply. These simplifications, along with working out which bits can be pre-computed, add up to lots of savings on cpu. This makes it possible for Cytomic to do in depth and detailed circuit models but still be reasonable on the cpu.

The rabbit hole goes a lot deeper, but that gives you the general idea. For more info you can check out the technical papers section of the Cytomic web page, in particular there is an Audio Developer Conference (ADC) talk I gave linked at the top of the page called "From Circuit to Code: Under the Hood of Analog Modelling" -

https://cytomic.com/technical-papers/


Hi Andy C, I love the ableton glue compressor that you guys made. Is your “the glue” a step up from that? If so, is it correct that a v2 is imminent?

Thanks

Post

Writetomichael wrote: Wed Nov 13, 2024 4:33 pm Hi Andy C, I love the ableton glue compressor that you guys made. Is your “the glue” a step up from that? If so, is it correct that a v2 is imminent?
Thanks
The core DSP in the Live version is identical to that of the plugin version, but the plugin offers higher quality oversampling and a few other features the Live version does not, including peak needle mode, and automatic switching to higher oversampling rates on render. The upcoming Glue v2 will offer an HD version which will not be in Live, and will be a free update for those that currently bought The Glue without discount from Cytomic directly. I have no idea when The Glue v2 will be ready, so if you want the HD mode specifically then I recommend waiting until there is a release ready to try.

For The Glue v2 I'm building a kit version from DIY-RE so I can measure each component before soldering it together, which will save some time and guesswork later on in matching component values. I'll post progress along the way, so there will be plenty of news about when things are getting closer to release.
The Glue, The Drop, The Scream - www.cytomic.com

Post

andy-cytomic wrote: Wed Nov 13, 2024 5:02 pm
Writetomichael wrote: Wed Nov 13, 2024 4:33 pm Hi Andy C, I love the ableton glue compressor that you guys made. Is your “the glue” a step up from that? If so, is it correct that a v2 is imminent?
Thanks
The core DSP in the Live version is identical to that of the plugin version, but the plugin offers higher quality oversampling and a few other features the Live version does not, including peak needle mode, and automatic switching to higher oversampling rates on render. The upcoming Glue v2 will offer an HD version which will not be in Live, and will be a free update for those that currently bought The Glue without discount from Cytomic directly. I have no idea when The Glue v2 will be ready, so if you want the HD mode specifically then I recommend waiting until there is a release ready to try.

For The Glue v2 I'm building a kit version from DIY-RE so I can measure each component before soldering it together, which will save some time and guesswork later on in matching component values. I'll post progress along the way, so there will be plenty of news about when things are getting closer to release.
Will you add the Mono SC button from the DIYRE's?

Post

andy-cytomic wrote: Wed Nov 13, 2024 1:41 am
<snip>
Interesting!
A well-behaved signature.

Post

jtsterays wrote: Wed Nov 13, 2024 5:35 pm Will you add the Mono SC button from the DIYRE's?
No, I won't add that, but there will be a dual mono to stereo linked stepped knob to change how things operate. If you want to sum a stereo signal to mono, and then send that to the external sidechain input of The Glue you can reproduce the GYRAF version, which saved money by only having a single sidechain ratio shaper and amp. If you sum a stereo signal to mono then you can miss peaks due to phase cancellation, so it's not ideal for a compressor to behave this way.
The Glue, The Drop, The Scream - www.cytomic.com

Post

andy-cytomic wrote: Wed Nov 13, 2024 5:02 pm
Writetomichael wrote: Wed Nov 13, 2024 4:33 pm Hi Andy C, I love the ableton glue compressor that you guys made. Is your “the glue” a step up from that? If so, is it correct that a v2 is imminent?
Thanks
For The Glue v2 I'm building a kit version from DIY-RE so I can measure each component before soldering it together, which will save some time and guesswork later on in matching component values. I'll post progress along the way, so there will be plenty of news about when things are getting closer to release.
Thanks for doing what you do, and so thoughtfully and thoroughly! Your stuff (from FXPansion to Ableton and Cytomic) has always stood out from the rest. :party: Reading about the solver was interesting, will have to check out the paper you linked. :tu:

Post

So old and still so good

Return to “Effects”