ffmpegwasm / ffmpegwasm/ffmpeg.wasm

How to acquire and execute ffmpeg in real time New data generated by the run process

Open
#430 0 comments 1 reaction 0 assignees View on GitHub
Dominant language
C
Stars
17.8k
Forks
1.1k
PR merge metrics
No merged PRs in 30d

Description

I want to realize such a function: upload while converting videos.

I tried to do like this, but the result was not satisfactory.
Res outputs results only after ffmpeg completes the operation of the whole process.
```
// await ffmpeg.run'-i', 'video.mp4', '-r', '10', '-b:a', '32k', 'test.mp4');
ffmpeg.run('-i', 'video.mp4', '-r', '10', '-b:a', '32k', 'test.mp4').then(res => {
console.log('success', res);
})
```

Is there any constructive way?

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.