doudou201701 2009-08-05 14:38
浏览 21

媒体转换库/插件最好是php

I am looking for an media conversion library that can convert and compress various media i.e both audio and video files to various formats.

  • 写回答

3条回答 默认 最新

  • duanlao1552 2009-08-05 14:41
    关注

    FFMPEG-PHP is a popular choice for extracting information. It doesn't re-encode files, though. http://ffmpeg-php.sourceforge.net/

    But if you have an instance of FFMPEG installed on the machine, you can call FFMPEG via the exec function in php. Eg: exec(’ffmpeg -i ‘.$SourcePath.’ ‘.$Destination);

    评论

报告相同问题?