I have a array that is full of image objects, I need to be able to encode that array into a movie project. I have a Java server that I will use if needed, but I would prefer only having this client-side with JavaScript.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you’re talking about encoding into a standard format like H.264 or Web.M, then you should use your Java server and the bindings to FFmpeg or whatever your preferred video library is. Many JavaScript clients are not fast enough to encode video, and pre-existing software does not exist for this task. I’d think that Internet Explorer would be problematic in particular, because of how low it’s interpreted JS engine is compared to the JIT compilers in projects like Gecko or Webkit.