Server-side video conversion and compression

孤街醉人 提交于 2019-11-30 05:24:35

问题


I want to provide an automatic video-converter for my CMS-customers. They should be able to upload their "untouched" video-files (MP4, VMV, AVI, ...) and my server compresses and converts it to a Web-friendly MP4-file (exactly like YouTube makes it).

The result is clear:

  • Web-friendly MP4-format
  • Compressed to tolerable file size

So I'm looking for a PHP-API or Linux-shell-script to realise this.

Is there a easy way to handle this?


Edit: YouTube-embedded videos are not a solution for me.


回答1:


Have a look at http://www.ffmpeg.org/ it's pretty much the go-to library for this sort of thing.

I found a PHP driver for it here that looks interesting but I've not tried it. Still, it's easy enough to run the shell commands directly from PHP if needed.



来源:https://stackoverflow.com/questions/26591690/server-side-video-conversion-and-compression

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!