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);解决 无用评论 打赏 举报