huaxin233 / gstreamer

GStreamer学习以及资料整理

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

gstreamer

gstreamer学习以及资料整理

环境准备
  • OSX
    #安装GStreamer
    https://gstreamer.freedesktop.org/data/pkg/osx/
    
    #配置搜索路径
    export PKG_CONFIG_PATH=/Library/Frameworks/GStreamer.framework/Versions/Current/lib/pkgconfig/
    
    # 安装XQuartz
    https://www.xquartz.org/
    brew install gtk+3
    
    export PKG_CONFIG_PATH=/opt/X11/lib/pkgconfig/:${PKG_CONFIG_PATH}
  • Ubuntu
    # 安装GStreamer
    sudo apt-get install libgstreamer1.0-0 gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly gstreamer1.0-libav gstreamer1.0-doc gstreamer1.0-tools
    sudo apt-get install libgstreamer-plugins-base1.0-dev
    
    # 安装GTK
    sudo apt-get install libgtk-3-dev 
    
  • CentOS
    yum install gstreamer*
    
    rpm -ivh http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm
    
    yum install gstreamer-plugins-bad gstreamer-plugins-ugly xine-lib-extras-nonfree gstreamer-ffmpeg
    
    yum -y install http://li.nux.ro/download/nux/dextop/el7/x86_64/nux-dextop-release-0-5.el7.nux.noarch.rpm
    
    yum install libdvdcss gstreamer{,1}-plugins-ugly gstreamer-plugins-bad-nonfree gstreamer1-plugins-bad-freeworld

Basic

参考资料

About

GStreamer学习以及资料整理

License:Apache License 2.0


Languages

Language:C 100.0%