Can you "stream" images to ffmpeg to construct a video, instead of saving them to disk? I want something similar but in node js
Asked
Active
Viewed 100 times
1 Answers
1
The equivalent for nodejs would be child_process https://nodejs.org/api/child_process.html . The spawn call returns an object that has a stdin property (e.g. process.stdin), essentially the same as the answer you linked.

adotout
- 1,170
- 12
- 17