I was wondering how patible Node.js is with videos. Not playing them, but actually editing it. My end goal is to reverse videos online. Java looks like my best bet so far, but I do like how Node.js is fast, scalable, etc.
Does anyone know if it is possible with node.js? At lease being able to break up videos into frames, putting them into an array of some sort, and then sticking them back up.
My guess is probably not, as it looks as it is based off of JavaScript. I may be wrong, but I think javaScript is more UI, Animating, Simple Data jobs, etc. Not big time video editing.
Any help is highly appreciated.
I was wondering how patible Node.js is with videos. Not playing them, but actually editing it. My end goal is to reverse videos online. Java looks like my best bet so far, but I do like how Node.js is fast, scalable, etc.
Does anyone know if it is possible with node.js? At lease being able to break up videos into frames, putting them into an array of some sort, and then sticking them back up.
My guess is probably not, as it looks as it is based off of JavaScript. I may be wrong, but I think javaScript is more UI, Animating, Simple Data jobs, etc. Not big time video editing.
Any help is highly appreciated.
Share Improve this question edited Aug 20, 2012 at 3:57 Makoto 107k27 gold badges198 silver badges235 bronze badges asked Aug 20, 2012 at 3:55 AlexAlex 1451 gold badge4 silver badges15 bronze badges2 Answers
Reset to default 7ffmpeg/libav is the go-to library for this sort of thing on Linux. While there are some ffmpeg bindings for node.js (e.g, https://github./xonecas/ffmpeg-node), they aren't quite as plete as you'd need for this task, and in any case ffmpeg is itself not asynchronous in the sort of way that you'd need to make this make sense for node.js.
I'd start by trying to implement this task using ffmpeg/libav using C, then consider other implementations afterwards.
I would approach this from the other end: What tool can I use to reverse videos? I'm sure there are better options out there, but at least it's possible to do with ffmpeg, according to this SO answer. The caveat is that you have to split it into images and then stitch them back together.
If you would go with this route (i.e., using ffmpeg in the manner described), you could indeed acplish it with node.js for the web application and job handling. I would have some kind of workers (either something similar to e.g. resque or using e.g. node.js child_process.fork
).
As @duskwuff mentions in his answer, this solution won't be streaming, but using workers, you might be able to acplish something acceptable, depending on your requirements.
If, on the other hand, you have e.g. a Java library that's awesome in reversing videos, you should use that, and perhaps build the web app in Java as well.