How to make a video from multiple images #39523
-
My purpose is to make a video from 256 images like a slide show. Recently, I used ffmpeg and videoshow to perform this action. But the problem is, to convert images to video "ffmpeg" must be installed globally! My question is "Is there any possibility to perform this action purely in nodejs without depending on ffmpeg or any other libraries?". If I have to write custom code, I am ready! All I need someone to guide me through this. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
NodeJs in its core just v8 engine inside C++ wrapper which excute the Javascript code. There is no way you can create a video using Pure JS, you will need a library that handles video/audio and multimedia format. These type of work load are very cpu intensive and does alot of mathmatical computation anything like that should not use JS. JS is bad in these aspect compare to C/C++/Rust. |
Beta Was this translation helpful? Give feedback.
NodeJs in its core just v8 engine inside C++ wrapper which excute the Javascript code. There is no way you can create a video using Pure JS, you will need a library that handles video/audio and multimedia format.
These type of work load are very cpu intensive and does alot of mathmatical computation anything like that should not use JS. JS is bad in these aspect compare to C/C++/Rust.