ffmpegwasm / ffmpegwasm/ffmpeg.wasm

Stdin Support

Ouverte
#141 5 commentaires 16 réactions 0 personnes assignées Voir sur GitHub
Langage dominant
C
Étoiles
17.8k
Forks
1.1k
Métriques de merge des PR
Aucune PR mergée en 30 j

Description

Ideally, I'd like to be able to use ffmpeg.wasm with the MediaRecorder API, which supplies "chunks" of video. Currently, I use this API in conjunction with ffmpeg via a node `child_process` and using the stdin pipe to "feed" data to ffmpeg while it's running.

I'd love to be able to do something like the following:

```
let instance = ffmpeg.start('-i - -f hls -hls_time 2 -hls_playlist_type event stream.m3u8');
instance.stdin.write(new Uint8Array(arrayBuffer));
```

Currently doing something similar in a node environment, but would love to give WASM a try instead of needing an Electron app.

Guide de contribution

Ouvrir le guide de contribution

Évaluation

Cette issue n'a pas encore été évaluée.

Recevez les nouvelles issues par e-mail

Un résumé court des issues GitHub adaptées aux débutants.