Friday, October 28, 2022

[SOLVED] Installing Gstreamer-1.0 on Mac OS X Mavericks

Issue

I want to install Gstreamer-1.0 on Mac OS X Mavericks. So I already install gstreamer-1.0-1.6.0-x86_64.pkg and gstreamer-1.0-devel-1.6.0-x86_64.pkg from href="http://gstreamer.freedesktop.org/data/pkg/osx/1.6.0/" rel="noreferrer">here. After that I tried to run something like this:

gst-launch-1.0 fakesrc ! fakesink

But got error:

-bash: gst-launch-1.0: command not found

So how I can install and use Gstreamer-1.0 on Mac OS X Mavericks?


Solution

From https://stackoverflow.com/a/30873313/1162305

Try installing them with the following commands from your terminal:

brew install gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad gst-plugins-ugly gst-libav


Answered By - Som
Answer Checked By - David Goodson (WPSolving Volunteer)