Is it possible to install gstreamer 1.4 framework on Ubuntu 14.04?
Asked
Active
Viewed 3.9k times
2 Answers
9
Open your terminal and paste these line after line
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
It will install and source
Raja G
- 105,327
- 107
- 262
- 331
5
I created a PPA with gstreamer 1.4.3 for Ubuntu 14.04 (Trusty Tahr).