Running ffmpeg in browser - options?

后端 未结 1 1263
天涯浪人
天涯浪人 2021-01-12 11:38

I need t create a web app that will utilize ffmpeg for compositing , converting video sources. I cam across videoConverter.js. https://bgrins.github.io/videoconverter.js/

相关标签:
1条回答
  • 2021-01-12 12:19

    You are going to have a tough time running something like that directly in the browser - and even if you did it would require a lot of code. I would suggest building a small web application that lives on a server that will take a media file as a parameter along with any configuration options that you want to pass along with it and let ffmpeg do the hard work on the server without having to recreate the wheel then return the modified media file. I've done something similar and it works great and in the end is a very small, lightweight application.

    0 讨论(0)
提交回复
热议问题