Charles C.

Results 37 comments of Charles C.

I actually have a better solution to this on my local ``` with open(self.executable, 'wb') as f: shutil.copyfileobj(response, f) response.close() ``` There is also a bug in the json parsing...

I may rehost this (in accordance with license) and incorporate your change since I'm actually using it in projects

I suppose my argument was that the truncation of the float intrinsically affects the resultant waveform since the rounding effect changes (to a factor of a whole integer vs. a...

I'm kind of working on the interim solution in a fork, and there might be a change required to the upstream audio package. My idea is to default to float64...

Hmm, I would wonder if float32 default would be better then. I would argue that float32 is considered faster for processing audio, which is why most DAWs (including audacity /...

Also it could mean collapsing the multiple buffers into a single buffer that just accepts Data interface

Realized quickly how uphill of a battle it would be to refactor, so I'm going to instead try to spike an alternative as an example to show you sometime in...

Addendum: the more I think about it, I still think the interface should be generalized to accept any of the options. While I personally believe float should be the base...

I have to review what I did, but I'm thinking I might be able to implement or use our own iota map (don't have code in front of me right...

Deep equal is only used in tests as you can see it was already being used by the maintainers. Otherwise only the reflect kind structure was being used and I'm...