I want to be able to process a video frame by frame with NodeJS. I've looked at fluent-ffmpeg, but I don't think it supports processing the video frame by frame.
asked Apr 7, 2015 at 23:36
Michael Studebaker
6069 silver badges20 bronze badges
-
1You'll have to decode the video into individual frames (using FFmpeg... its command line binary is fine), read these frames in Node.js, do whatever you want to do them, and then re-encode a video from these frames. This is an intensive process.Brad– Brad2015年04月08日 01:41:02 +00:00Commented Apr 8, 2015 at 1:41
-
I saw your other question concerning frame differences. May I ask why you need to use Node.js? You could use something like the open source computer vision library instead opencv.org.aergistal– aergistal2015年04月08日 12:10:36 +00:00Commented Apr 8, 2015 at 12:10
-
1If you need to use Nodejs for video processing you can use OpenCV wrapper for Nodejs (github.com/peterbraden/node-opencv)GPrathap– GPrathap2015年06月02日 16:54:45 +00:00Commented Jun 2, 2015 at 16:54
1 Answer 1
The OpenCV node package will allow reading and processing of video. See examples.
answered Oct 23, 2017 at 18:31
grabbag
1,0401 gold badge19 silver badges33 bronze badges
Sign up to request clarification or add additional context in comments.
1 Comment
Aniruddha Chakraborty
npmjs.com/package/node-opencv this package have literally nothing. why would you suggest a blank security holder repo? i don't think you get money from clicking
Explore related questions
See similar questions with these tags.
lang-js