Th3G33k

Results 18 comments of Th3G33k

### Web progress callback ```html 0 ``` ```js function progress_callback(args) { if (args.status != 'progress') return; let elm = document.getElementById('progress') if(!elm) return elm.value = args.progress if(args.progress == 100 && elm.labels[0])...

Thank you @xenova for the review. Here's the changes I have made : - split into two functions : `toBlob()` and `save(path)` - check type in `constructor()` - in `save()`,...

I have added support for 2 channels audio + interleave. `interleave(keepOriginalValues)` will use a new buffer of length * 2 (keeping original), or a new buffer of length * 1...

I have merged branch v3 #545 into this PR

#745 > Hi there 👋 v3 will use the name `model` instead of `decoder_merged_model`, as the latter is the result of a legacy conversion process which created multiple versions of...

@JohnReginaldShutler `model`: The default filename prefix can be change using the option model_file_name. `_quantized.onnx`: The default filename suffix cannot be change, and will depend on the precision used. Example: ```js...