Kequc

Results 21 comments of Kequc

I'm making an effort to convert my typed array into Buffer before writing it to the stream. For some reason I don't think Buffer is turning up properly client side....

You're right. I was mistaken, I got that working... but... :( ``` 5::/microphone:{"name":"$stream-read","args":["ba4d0198-d786-494a-b31b-43bff29d4006",16384]} 5:1+:/microphone:{"name":"$stream-write","args":["ba4d0198-d786-494a-b31b-43bff29d4006",{},"buffer"]} 5::/microphone:{"name":"$stream-error","args":["9b57c954-ac95-488d-9c20-7919a8ec3ef6","Invalid non-string/buffer chunk"]} ``` It's not your fault, this whole week has been a bust so...

``` # @bStream = ss.createStream() _onAudio: (e) => # Audio process data = e.inputBuffer.getChannelData 0 @bStream.write @_convertInt16toBuffer @_convertFloat32ToInt16 data _convertFloat32ToInt16: (buffer) => # Convert buffer to 16 bit l =...

[email protected] /usr/local/lib/node_modules/browserify

I dunno man, I'm emitting just the same way. I double checked my convert from arraybuffer to buffer code from somewhere else on the net. I suppose I'm just generating...

My implementation that works has me sending base64 encoded data (strings) in chunks to the server, then decoding base64 and writing it to a stream. I'm using a version of...

Expected behaviour, I suppose would be that the data is sent in multipart and accepts a json response.

The next issue I was coming up to was that CouchDB seems to expect a specific order to the multipart request. I am not sure I'd be able to ensure...

I suppose just download and install it. By default the db instance runs at http://127.0.0.1:5984 https://couchdb.apache.org/

I suppose a file could be sent to any post route in my application and it would then remain in the tmp directory eternally. The best behaviour from my point...