Page Image
Saturday, May 10, 2025
A C++ library for professional audio/video/media
I’ve started to collect all my C++ code that pertains to professional audio/video/media into a singular library called libpromeki. It takes its name from the internal library that performed the same functions at my, now defunct video disk recorder company, SpectSoft . In fact, much of this library comes from that earlier library, although the earlier library sat atop Qt and this newer library has all the Qt dependency removed (although keeps a lot of the same design patterns). You can find the library here
Read More...
Page Image
Saturday, May 10, 2025
Some ideas on how to keep code common that's used across libraries
It’s usually a good idea to maintain one place for common code that may be used across multiple applications or libraries. This code is often compiled into those items (i.e. not a library itself). Frequently, you’ll want to be able to define the device you’re compile the code for so-as not to have to include any more code than required. Below are some ways to accomplish this. They’re separated by compile time and run time options. The compile time options are less flexible, but offer no runtime impact and smaller compiled sizes. The runtime options are more flexible, but more computationally expensive and larger in compiled size. It’s best to start with compile time solutions until you actually need a runtime one.
Read More...
Page Image
Saturday, May 10, 2025
Keep your list of data abstract, format it at compile time!
Tags: Programming, C, C++, Dry
This is an oldy, but goody. This pattern allows you to make an abstract list of data and then format it at will during compile time. I’m a big proponent of single source of truth (also known as DRY, or don’t repeat yourself). This is one way to achieve this.
Read More...
Page Image
Friday, May 9, 2025
My first short film. Stuff is going to get shutdown, and that's a bad thing.
My friend John Martin and I had been wanting to make films forever. So we did. I give you Shutdown, filmed over the summer and fall of 2019 for submission to the local Thru The Lens film festival. It won best editing and best picture in that festival. It’s a real movie, look it has an IMDb page .
Read More...
Page Image
Friday, May 9, 2025
An open source audio (VST/MIDI) plugin to generate euclidean rhythms
Sick Beat Betty is an audio plugin I wrote to make it easy to generate euclidean rhythms . It was the first time used the JUCE audio application framework. I’ve found JUCE a great way to write an audio plugin as it provides all bits you could want to get started: a common way to write the DSP/MIDI processing which plugs into the various plugin frameworks ( VST , CLAP , etc), an OpenGL/Accelerated UI framework, and all the various other bits that you’d want to see to make development a pleasure (and not a hell of dependency management).
Read More...
Page Image
Thursday, May 8, 2025
Sometimes you've got to convert between an enumeration and a string...
Often times in an application, you’ve got to convert between an enumeration value and a string. It’s generally best to wrap this in an object, so you keep all the details of the conversion contained in one place. It also makes the syntax of comparing objects a simple process of a == b or similar.
Read More...
Page Image
Thursday, May 8, 2025
It's the final broadcast! (a short film)
Once again I teamed up with my long time friend and partner in filmmaking, John Martin and our rag tag team of movie makers and actors. And once again, making it in 37 hours for Kevin Smith’s 2025 SModcastle 37 Hour Challenge
Read More...
Page Image
Thursday, May 8, 2025
A short film about a sellout
This is a film I made with my long time friend and partner in filmmaking, John Martin. We made it in 37 hours for Kevin Smith’s 2024 SModcastle 37 Hour Challenge
Read More...
Page Image
Wednesday, May 7, 2025
This is a current list of my published songs
Tags: Music
Here’s some music I’ve made under my band name Interrupt Service Routine. While I’d hardly call myself a competent musician, I’ve not let that get in the way of my love of making music.
Read More...