Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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?

like image 619
konstantin_doncov Avatar asked Sep 27 '15 12:09

konstantin_doncov


People also ask

How do I uninstall GStreamer from MAC?

To uninstall, just delete the folder /Library/GStreamer and edit the file /etc/launchd. conf to remove the setenv lines.

Where are GStreamer plugins located?

These are stored in a directory called plugins inside the . gstreamer-0.10 directory in the user's home directory. plug-ins installed system-wide. On this system, they are stored in /opt/gstreamer-sdk/lib/gstreamer-0.10 .

Can GStreamer run on Windows?

If you're on Linux or a BSD variant, you can install GStreamer using your package manager. For other platforms, specifically Windows, macOS, Android, and iOS, we provide binary releases in the form of official installers or tarballs maintained by the GStreamer project.

Does Ubuntu come with GStreamer?

Gstreamer is essential package for Ubuntu, but there could be some missing packages that are required for app development. So with next steps you are going to install Gstreamer on your PC.


2 Answers

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-ffmpeg
like image 61
Som Avatar answered Oct 17 '22 23:10

Som


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
like image 18
DavidB Avatar answered Oct 17 '22 23:10

DavidB