Page 1 of 1

FFmpeg

Posted: Sat Jan 18, 2014 8:27 pm
by heihachi88
How to install latest FFmpeg latest version? Without compiling, because i can't do that.

Re: FFmpeg

Posted: Sat Jan 18, 2014 11:27 pm
by imperio
You can install FFmpeg only external repository
for example is RPM

Re: FFmpeg

Posted: Wed May 13, 2015 8:40 am
by vastonsmith
You can modify one of existing apache template or create new one that will cover your needs.
Templates are available in the /usr/local/vesta/data/templates/web/httpd directory.



winonslots inc

Re: FFmpeg

Posted: Wed May 13, 2015 12:33 pm
by skurudo
vastonsmith wrote:You can modify one of existing apache template or create new one that will cover your needs.
Templates are available in the /usr/local/vesta/data/templates/web/httpd directory.ahsan
Mmmm... miss ;-)

Re: FFmpeg

Posted: Sat Jul 25, 2015 8:05 am
by suassive
You can install it on Ubuntu 14.04 with the code below.
First make sure you have your ppa repository installed with the code below

Code: Select all

apt-get install software-properties-common
To install FFMPEG (latest version) use the following code (might work on some older versions of Ubuntu)

Code: Select all

sudo add-apt-repository ppa:mc3man/trusty-media
sudo apt-get update
sudo apt-get install ffmpeg
sudo apt-get install frei0r-plugins

Re: FFmpeg

Posted: Mon Oct 12, 2015 1:06 pm
by guonning
How to do in centos?
Thanks.

Re: FFmpeg

Posted: Tue Oct 13, 2015 3:18 pm
by skurudo
guonning wrote:How to do in centos?
Thanks.
Something like this copypaste:

repo + install ffmpeg

Code: Select all

# rpm -ivh http://download1.rpmfusion.org/free/el/updates/6/x86_64/rpmfusion-free-release-6-1.noarch.rpm
# yum install ffmpeg ffmpeg-compat ffmpeg-compat-devel ffmpeg-devel ffmpeg-libs
module for php

Code: Select all

 
# yum install git
# git clone https://github.com/tony2001/ffmpeg-php.git
for compile

Code: Select all

 yum install php-devel
compile

Code: Select all

 # cd ffmpeg-php
# phpize
# ./configure
# make && make install
edit

Code: Select all

 # vim /etc/php.d/ffmpeg.ini
paste and save

Code: Select all

extension=ffmpeg.so
apache restart

Code: Select all

 /etc/init.d/httpd restart