Cytomic 'The Glue' Compressor
-
- KVRAF
- 4318 posts since 20 Feb, 2004
What is this "symbolic simplification engine"?andy-cytomic wrote: Wed Nov 06, 2024 1:41 am 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.
A well-behaved signature.
- KVRAF
- 2819 posts since 3 Dec, 2008
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.Medenka wrote: Tue Nov 12, 2024 8:49 pm What is the last version of The Glue that works on Windows 7?
= 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
- KVRAF
- 2819 posts since 3 Dec, 2008
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)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
-
Writetomichael Writetomichael https://www.kvraudio.com/forum/memberlist.php?mode=viewprofile&u=724794
- KVRer
- 11 posts since 9 Nov, 2024
andy-cytomic wrote: Wed Nov 13, 2024 9:41 amAll 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 exampleand 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.Code: Select all
a*b + a*c -> a*(b + c)
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
- KVRAF
- 2819 posts since 3 Dec, 2008
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.Writetomichael wrote: Thu Nov 14, 2024 12:33 am 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.
The Glue, The Drop, The Scream - www.cytomic.com
-
- KVRian
- 697 posts since 9 Dec, 2021
Will you add the Mono SC button from the DIYRE's?andy-cytomic wrote: Thu Nov 14, 2024 1:02 amThe 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.Writetomichael wrote: Thu Nov 14, 2024 12:33 am 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.
-
- KVRAF
- 4318 posts since 20 Feb, 2004
- KVRAF
- 2819 posts since 3 Dec, 2008
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
-
Winstontaneous Winstontaneous https://www.kvraudio.com/forum/memberlist.php?mode=viewprofile&u=98336
- KVRAF
- 2592 posts since 15 Feb, 2006 from Another Green World
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.andy-cytomic wrote: Thu Nov 14, 2024 1:02 amFor 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.Writetomichael wrote: Thu Nov 14, 2024 12:33 am 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
- KVRAF
- 2819 posts since 3 Dec, 2008
For anyone interested about news around The Glue v2 I've written an article about my last 3 months of work, and I'll post more articles in the future:
https://cytomic.com/discrete-blackmer-vca/
https://cytomic.com/discrete-blackmer-vca/
The Glue, The Drop, The Scream - www.cytomic.com
- KVRAF
- 2819 posts since 3 Dec, 2008
News: The Glue v1.7.8 is available for download
The Glue v1.7.8 (3 May 2025)
https://cytomic.com/product/glue
• New: added “read only” VuMeter parameter to report the main VU gain reduction needle position to AAX and VST3 DAWs that support metering
(edit: this version of gain reduction metering will enable Pro Tools and anything that can use VST3 "read only parameters" to display gain reduction metering, which includes SSL UC1)
The Glue v1.7.8 (3 May 2025)
https://cytomic.com/product/glue
• New: added “read only” VuMeter parameter to report the main VU gain reduction needle position to AAX and VST3 DAWs that support metering
(edit: this version of gain reduction metering will enable Pro Tools and anything that can use VST3 "read only parameters" to display gain reduction metering, which includes SSL UC1)
Last edited by andy-cytomic on Mon May 05, 2025 1:30 am, edited 2 times in total.
The Glue, The Drop, The Scream - www.cytomic.com
-
- KVRian
- 806 posts since 21 Sep, 2008
GR metering does not appear in REAPER. It does work with Softube/Waves.andy-cytomic wrote: Sat May 03, 2025 2:00 am News: The Glue v1.7.8 is available for download
The Glue v1.7.8 (3 May 2025)
https://cytomic.com/product/glue
• New: added “read only” VuMeter parameter to report the main VU gain reduction needle position to AAX and VST3 DAWs that support metering
- KVRAF
- 2819 posts since 3 Dec, 2008
I support VST3 read only parameter meters, as well as AAX meters. If REAPER supports either of those then it will work fine. I'm pretty sure REAPER only supports the Presonus VST3 extensions for metering, which I have not implemented.meloco_go wrote: Sat May 03, 2025 7:19 amGR metering does not appear in REAPER. It does work with Softube/Waves.andy-cytomic wrote: Sat May 03, 2025 2:00 am News: The Glue v1.7.8 is available for download
The Glue v1.7.8 (3 May 2025)
https://cytomic.com/product/glue
• New: added “read only” VuMeter parameter to report the main VU gain reduction needle position to AAX and VST3 DAWs that support metering
The Glue, The Drop, The Scream - www.cytomic.com
