ffmpegwasm / ffmpegwasm/ffmpeg.wasm

Get output as File object from ffmpeg.FS

オープン
#164 コメント 1 件 リアクション 0 件 担当者 0 名 GitHub で見る
主要言語
C
スター
17.8k
フォーク
1.1k
PR マージ指標
30日以内にマージされた PR はありません

説明

**Is your feature request related to a problem? Please describe.**
I want to input this into a JS library/plugin that only accepts File objects. Is there a way to do this? Currently I figured I can do it through this inefficient way:

```
const data = ffmpeg.FS('readFile', 'output.mp4');
var files = [new File(data, "output2.mp4")];
```

**Describe the solution you'd like**
Essentially get a File object directly.

**Describe alternatives you've considered**
Already mentioned above:
```
const data = ffmpeg.FS('readFile', 'output.mp4');
var files = [new File(data, "output2.mp4")];
```

**Additional context**
No

コントリビューションガイド

コントリビューションガイドを開く

評価

この issue はまだ評価されていません。

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。