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:
我想在Mac OS X Mavericks上安装Gstreamer-1.0。所以我已经安装了gstreamer-1.0-1.6 -x86_64。包裹,gstreamer - 1.0 -猛击- 1.6.0 - x86_64。从这里包裹。在那之后,我试着像这样运行:
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?
那么我如何在Mac OS X Mavericks上安装和使用Gstreamer-1.0呢?
2 个解决方案
#1
13
From https://*.com/a/30873313/1162305
从https://*.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
#2
7
The package you have downloaded from the gstreamer website install everything under the /Library/Frameworks/ directory. The following command should work on your system:
您从gstreamer网站下载的软件包安装了/Library/ framework /目录下的所有内容。以下命令应适用于您的系统:
/Library/Frameworks/GStreamer.framework/Commands/gst-launch-1.0 --version
#1
13
From https://*.com/a/30873313/1162305
从https://*.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
#2
7
The package you have downloaded from the gstreamer website install everything under the /Library/Frameworks/ directory. The following command should work on your system:
您从gstreamer网站下载的软件包安装了/Library/ framework /目录下的所有内容。以下命令应适用于您的系统:
/Library/Frameworks/GStreamer.framework/Commands/gst-launch-1.0 --version