Beto Frega
Beto Frega

Reputation: 976

How to convert a javascript animation to video on the server-side?

I am pretty sure this might not be an easy task, but here goes:

My team is creating a website where the user is able to create animations. We are using js+html. The thing is that now the client wants us to be able to send the video to YouTube, thus requiring us to convert the animation to video on the server-side somehow...

Do you guys have any ideas on how to do that?

Upvotes: 4

Views: 1724

Answers (1)

Alex Turpin
Alex Turpin

Reputation: 47776

If you generate "frames" on the client-side and can send them to the server, you could assemble them in a video using ffmpeg.

Upvotes: 2

Related Questions