9

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 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?

konstantin_doncov
  • 2,725
  • 4
  • 40
  • 100

3 Answers3

38

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
Som
  • 950
  • 2
  • 16
  • 29
  • 21
    2 additional things: 1) instead of gst-ffmpeg, use gst-libav 2) make sure if you have the latest MacOS 10.12.2 to update brew – Gooshan Jan 06 '17 at 06:01
18

The package you have downloaded from the gstreamer website install everything under the /Library/Frameworks/ directory. The following command should work on your system:

/Library/Frameworks/GStreamer.framework/Commands/gst-launch-1.0 --version
DavidB
  • 213
  • 2
  • 8
0
`brew --prefix gstreamer`/bin/gst-launch-1.0
Josh Bleecher Snyder
  • 8,262
  • 3
  • 35
  • 37