如何将php改成mp4,PHP 将视频转成 MP4 并获取视频预览图(用到ffmpeg)
搜索熱詞
下面是編程之家 jb51.cc 通過網(wǎng)絡(luò)收集整理的代碼片段。
編程之家小編現(xiàn)在分享給大家,也給大家做個(gè)參考。
flv_convert_get_thumb('input.avi','output.jpg','output.ogm');
// code provided and updated by steve of PHPsnaps ! thanks
// accepts:
// 1: the input video file
// 2: path to thumb jpg
// 3: path to transcoded mpeg?
function flv_convert_get_thumb($in,$out_thumb,$out_vid)
{
// get thumbnail
$cmd = 'ffmpeg -v 0 -y -i '.$in.' -vframes 1 -ss 5 -vcodec mjpeg -f rawvideo -s 286x160 -aspect 16:9 '.$out_thumb;
$res = shell_exec($cmd);
// $res is the output of the command
// transcode video
$cmd = 'mencoder '.$in.' -o '.$out_vid.' -af volume=10 -aspect 16:9 -of avi -noodml -ovc x264 -x264encopts bitrate=500:level_idc=41:bframes=3:frameref=2: nopsnr: nossim: pass=1: threads=auto -oac mp3lame';
$res = shell_exec($cmd);
}
以上是編程之家(jb51.cc)為你收集整理的全部代碼內(nèi)容,希望文章能夠幫你解決所遇到的程序開發(fā)問題。
如果覺得編程之家網(wǎng)站內(nèi)容還不錯(cuò),歡迎將編程之家網(wǎng)站推薦給程序員好友。
總結(jié)
如果覺得編程之家網(wǎng)站內(nèi)容還不錯(cuò),歡迎將編程之家網(wǎng)站推薦給程序員好友。
本圖文內(nèi)容來源于網(wǎng)友網(wǎng)絡(luò)收集整理提供,作為學(xué)習(xí)參考使用,版權(quán)屬于原作者。
總結(jié)
以上是生活随笔為你收集整理的如何将php改成mp4,PHP 将视频转成 MP4 并获取视频预览图(用到ffmpeg)的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: ext get id js_Ext.ge
- 下一篇: php头尾分离,laravel怎么做模板