Quinn Capen

Results 25 comments of Quinn Capen

Wrote simple test to check sound ducking settings and they are getting set correctly using the assets config method. Now I need to dive in deeper and see if I...

Can you try the following: In mpfmc/assets/video.py, change the following function in VideoPool from: @property def video(self): return self.asset to: @property def video(self): return self.asset.video On Thu, Oct 6, 2016...

That looks like it may fix one problem, but cause some others. It looks like there are several changes needed to properly fix this issue. On Thu, Oct 6, 2016...

In audio processing terms, auto-ducking is basically sidechain compression where the signal of one audio track is used to attenuate the signal of another track ([Dynamic Range Compression](https://en.wikipedia.org/wiki/Dynamic_range_compression), ). Unlike...

I simpler implementation could just use a common ducking envelope (set of ducking settings) and apply them to every sound played on a track when auto ducking is enabled (or...