jhiswin
jhiswin
@irskep I plan to start work on this; can you give me a quick overview of your vision for the implementation of this feature?
> Thanks, would switch when I would be able to update. https://github.com/google/brotli#security-note > Version 1.0.9 contains a fix to "integer overflow" problem. This should be an emergency security update shouldn't...
[PPA was taken down and packages disappeared. Might have been an impersonator, purposely setting up packages in a way to make it seem like the only choice was to use...
It works, but performance is poor. Same can be said of Android though. On Mon, Jun 6, 2016 at 5:35 PM, Kazuki Oikawa [email protected] wrote: > I don't have a...
I've since switched to a solution based on recorder.js refactored to match the upcoming MediaRecorder API, but want to mention some quick (ie: pre-existing work) to implement resampling. Ordering by...
also possible to use OfflineAudioContext (https://developer.mozilla.org/en-US/docs/Web/API/OfflineAudioContext/startRendering) to do the resampling, which should outperform pure JS implementation
@pgee70 Nice, performs much faster and does create smaller files. Suggestion: Use this for .chunk, performs better: ``` Array.prototype.chunk = function(chunkSize) { var arr=this; var R = []; for (var...
Alright, got it working after modifying worker.js AudioRecorder.playClip(Clip.createFromSamples(Codec.speex.decode(clips[0].speex[0],clips[0].speex[1]))). I've got the source files patched up, so I can probably send a pull request in a bit. @pgee70 Would you happen...
@pgee70 Another tip to speed it up if you target Firefox users. speex.min.js minifies the initializer, which prevents Firefox from recognizing and precompiling as asm.js. Make sure the section between...