Anil Kumar Soni

Results 4 comments of Anil Kumar Soni

I was passing only responsive and ssr props.

``` async function blobToUint8Array(blob) { const arrayBuffer = await new Response(blob).arrayBuffer(); var uint8View = new Uint8Array(arrayBuffer); return uint8View; } ``` you may convert blob to Uint8Array to write to ffmpeg...

Check API docs in this repo. [API](https://github.com/ffmpegwasm/ffmpeg.wasm/blob/master/docs/api.md#ffmpeg-fs) `ffmpeg.FS('writeFile', 'image001.png', new Uint8Array(...));` The third param represent binary data. Before you can run any ffmpeg cmd , it must written to its...

@dkaus1 I ended up creating a custom component for conversation and individual widgets. I needed more control over the state. For state management I used zustand.