Installing can I install gstreamer 1.4 on ubuntu 14.04?

39,291

Solution 1

I created a PPA with gstreamer 1.4.3 for Ubuntu 14.04 (Trusty Tahr).

https://launchpad.net/~ddalex/+archive/ubuntu/gstreamer

Solution 2

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

Share:
39,291

Related videos on Youtube

Haris Kovacevic
Author by

Haris Kovacevic

Updated on September 18, 2022

Comments

  • Haris Kovacevic
    Haris Kovacevic over 1 year

    Is it possible to install gstreamer 1.4 framework on Ubuntu 14.04?

  • mx7
    mx7 almost 10 years
    If you have gstreamer 1.0 installed remove it and restart your system and try again.
  • Haris Kovacevic
    Haris Kovacevic almost 10 years
    I don't know is this a bug or what if I try to remove gstreamer it removes ubuntu-desktop in the process.
  • MadMike
    MadMike over 9 years
    The code names are used before the Ubuntu release is shipped. Later the numbers should be used: wiki.ubuntu.com/DevelopmentCodeNames
  • mchid
    mchid over 8 years
    @Raja To verify the version number, run the following command: gst-inspect-1.0 --version