Niels Provos
Niels Provos
AudioIOTensor does not seem to be thread safe. I just encountered that when creating a dataset that used a parallel map.
I agree with you. When I originally implemented this I was worried about backwards compatibility. I believe almost every browser supports webp now and the additional complication is not needed....
Thanks for working on this. I have unfortunately been too busy to help here.
This is a very odd user experience though: $ age-keygen -o ~/.config/sops/age/keys.txt Public key: age12ky56grvnjx4teeud7jnt6h5ehsa4xcav43hd8exuyks9zveuaksfkj9wp $ sops --encrypt --in-place secrets/development.container.env $ sops secrets/development.container.env Failed to get the data key required...
To make sops work, I have to move the .ssh directory $ mv ~/.ssh ~/.ssh.bak After that, it's happy again. PS: There is a 20 year old SSH key in...
This appears to be an implementation bug(?) of the DynamicsCompressor in the Web Audio API. Same problem without using tone.js: https://codepen.io/provos/pen/zxGLZYQ
Thank you, Marcel. That's very helpful. When I was looking into whether there was a hidden make up gain applied, I couldn't find this section. I agree with you that...
For what's it worth, here is a typescript implementation for reversing the makeup gain applied by Chrome: ```typescript import * as Tone from "tone"; /** * Creates a Tone.Gain node...
In terms of expensive computations, they are fortunately not in the signal path. It's paid once when setting up the node. So, that should be less of a concern. I...
You may want to create a feature tracking bug for tone.js to implement the changes to the web audio specification that will allow turning off the make up gain once...