如何在本地主机上安装ffmpeg和ff探头,以便我可以使用sonus laravel-4软件包?https://github.com/rafasamp/sonus
我能直接从吉特那里得到吗?
git clone git://source.ffmpeg.org/ffmpeg.git ffmpeg发布于 2014-02-21 01:07:40
执行git克隆将获得FFmpeg源代码,您需要编译它才能在本地主机上运行本地版本。最简单的方法是在FFmpeg下载部分上为您的操作系统获得一个预编译版本,然后在sonus config.php中配置完全合格的系统路径:
/*
|--------------------------------------------------------------------------
| ffmpeg System Path
|--------------------------------------------------------------------------
|
| We need to know the fully qualified system path to where ffmpeg
| lives on this server. If you paste this path into your shell or
| command prompt you should get output from ffmpeg.
|
| Examples:
| Windows: 'C:/ffmpeg/bin/ffmpeg.exe'
| Mac OSX: '/Applications/MAMP/ffmpeg/ffmpeg'
| Linux: '/usr/bin/ffmpeg'
|
*/
'ffmpeg' => '/usr/bin/ffmpeg', //for GNU/Linuxhttps://stackoverflow.com/questions/21920594
复制相似问题