Is it possible to install gstreamer 1.4 framework on Ubuntu 14.04?
Asked
Active
Viewed 4.0k 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,627
- 107
- 263
- 332
5
I created a PPA with gstreamer 1.4.3 for Ubuntu 14.04 (Trusty Tahr).
-
1The code names are used before the Ubuntu release is shipped. Later the numbers should be used: https://wiki.ubuntu.com/DevelopmentCodeNames – MadMike Oct 31 '14 at 12:34
gst-inspect-1.0 --version– mchid Jan 23 '16 at 23:31