lysdexic-audio

Results 16 comments of lysdexic-audio

> Yep - you can run a `.js` file directly with node which calls jsdoc2md ie: `$ node js2md.js` ```javascript // js2md.js 'use strict' const jsdoc2md = require('jsdoc-to-markdown') const fs...

just add this condition if you want your functions to come last etc ```javascript if (nameA < nameB && a.kind !== 'function') { return -1; } ```

Something like this? ```python class AudioBuffer(object): def __init__(self, blocksize): self.ringbuffer = jack.RingBuffer(blocksize*2) self.blocksize = blocksize def insert(self, data): if self.ringbuffer.write_space < (len(data)): # no space in the ringbuffer, discard it...

Hey! Thanks for the quick reply > If you don't care about an occasional dropout, you probably don't need the JACK ring buffer in the first place. ah interesting -...

On my Raspberry Pi4, using the `Queue` method brings my CPU usage up to 60-70% I wonder, would C based process callback function optimise this also?

Hey thanks for the quick reply - I'm referring to a binding to the HTML `optgroup` element https://developer.mozilla.org/en-US/docs/Web/HTML/Element/optgroup

Yes, exactly - not quite just the grouping of options, since the intention is to group other attributes from `Multiselect` like `maxSelect`.... 1. `allowUserOptions` could be either disabled for this...

Sorry @janosh bit too pressured at work to get onto doing this properly - working around it for now. Anyone else wants to jump in please do

Cheers for the report - haven’t done any Win11 testing yet. I’ll try to get a hold of Win 11 and try it out > On 24 Oct 2021, at...

Hi @aliostovar I just tried installing on a fresh clone of this repo - I can reproduce the install never finishing. I can make sure it's installed by running `npm...