Media conversion library / plugin preferably php

I am looking for a media content library that can convert and compress various media, as well as audio and video files into various formats.

+2
source share
3 answers

FFMPEG-PHP is a popular choice for extracting information. However, it does not transcode files. http://ffmpeg-php.sourceforge.net/

But if an FFMPEG instance is installed on the computer, you can call FFMPEG using the exec function in php. For instance:exec(’ffmpeg -i ‘.$SourcePath.’ ‘.$Destination);

+4
source

, - ffmpeg-php ( , ). Imagemagick .

0

mencoder MPlayer ( , ). ffmpeg MPlayer , , , ffmpeg.

ffmpeg , MPlayer , .

0

Source: https://habr.com/ru/post/1732894/


All Articles