Philippe Sultan

Results 5 comments of Philippe Sultan

This Chrome flag seems to address the issue of extending the scope of audio sources for AEC: chrome://flags/#chrome-wide-echo-cancellation > Run WebRTC capture audio processing in the audio process instead of...

I wasn't able to find a replacement script unfortunately. I can see that the [nodejs-speech project](https://github.com/googleapis/nodejs-speech) has now been archived and the sample files have been moved here: https://github.com/googleapis/nodejs-speech/tree/main/samples/generated However,...

Hi, You indeed have a 'stored' event emitted on the server : ``` javascript store = new FS.Store.GridFS("storename", {chunkSize: 1024*1024*2}); MyCollection = new FS.Collection('mycollection', { stores: [ store ], });...

Well, this is how I use it in my case, and I believe this should indeed work. However, maybe you should try `fileObj.on("stored", func)` as per aldeed's comment in the...

As a workaround for earlier versions of `rack` where this won't be backported, it looks possible to add the `Partitioned` attribute to `SameSite=None` cookies. ``` $ cat ./config/initializers/partitioned_cookies.rb # frozen_string_literal:...