Instalando posso instalar o gstreamer 1.4 no Ubuntu 14.04?

7

É possível instalar o framework gstreamer 1.4 no Ubuntu 14.04?

    
por Haris Kovacevic 30.08.2014 / 09:57

2 respostas

5

Eu criei um PPA com o gstreamer 1.4.3 para o Ubuntu 14.04 (Trusty Tahr).

link

    
por ddalex 31.10.2014 / 13:03
8

Abra o seu terminal e cole linha após linha

wget http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-1.4.0.tar.xz
tar -xvf gstreamer-1.4.0.tar.xz
cd gstreamer-1.4.0

./configure --prefix=/usr \
            --with-package-name="GStreamer 1.4.0 BLFS" \
            --with-package-origin="http://www.linuxfromscratch.org/blfs/view/svn/" &&
make
sudo make install

Ele será instalado e a fonte

    
por Ten-Coin 30.08.2014 / 10:03