1. 程式人生 > >GStreamer安裝下載

GStreamer安裝下載

·        環境
ubuntu14.04

·        apt-get 命令方式安裝
sudo apt-get install libgstreamer0.10-dev gstreamer-tools gstreamer0.10-toolsgstreamer0.10-doc
sudo apt-get install gstreamer0.10-plugins-base gstreamer0.10-plugins-goodgstreamer0.10-plugins-ugly gstreamer0.10-plugins-badgstreamer0.10-plugins-bad-multiverse
apt-get install libgstreamer* //

該命令的目的是安裝標頭檔案;注意’*

 

·        mp3播放器demo程式碼


#include <gst/gst.h>

#include <glib.h>

//定義訊息處理函式,
static gboolean bus_call(GstBus *bus,GstMessage *msg,gpointer data)
{
    GMainLoop *loop = (GMainLoop *)data;//這個是主迴圈的指標,在接受EOS訊息時退出迴圈
    switch (GST_MESSAGE_TYPE(msg))
    {
        case GST_MESSAGE_EOS:
            g_print("End ofstream\n");
            g_main_loop_quit(loop);
            break;
        case GST_MESSAGE_ERROR:
        {
           gchar *debug;
           GError *error;
          gst_message_parse_error(msg,&error,&debug);
           g_free(debug);
          g_printerr("ERROR:%s\n",error->message);
           g_error_free(error);
           g_main_loop_quit(loop);

break;
        }
        default:
             break;
    }
    return TRUE;
}

int main(int argc,char *argv[])
{
    GMainLoop *loop;
    GstElement*pipeline,*source,*decoder,*sink;//定義元件
    GstBus *bus;

gst_init(&argc,&argv);
    loop = g_main_loop_new(NULL,FALSE);//建立主迴圈,在執行 g_main_loop_run後正式開始迴圈

if(argc != 2)
    {
        g_printerr("Usage:%s <mp3filename>\n",argv[0]);
        return -1;
    }
    //建立管道和元件
    pipeline =gst_pipeline_new("audio-player");
    source =gst_element_factory_make("filesrc","file-source");
    decoder =gst_element_factory_make("mad","mad-decoder");
    sink =gst_element_factory_make("autoaudiosink","audio-output");

if(!pipeline||!source||!decoder||!sink){
        g_printerr("One elementcould not be created.Exiting.\n");
        return -1;
    }

//設定 source的location 引數。即檔案地址.
   g_object_set(G_OBJECT(source),"location",argv[1],NULL);

//得到 管道的訊息匯流排
    bus =gst_pipeline_get_bus(GST_PIPELINE(pipeline));

//新增訊息監視器
    gst_bus_add_watch(bus,bus_call,loop);
    gst_object_unref(bus);

//把元件新增到管道中.管道是一個特殊的元件,可以更好的讓資料流動
   gst_bin_add_many(GST_BIN(pipeline),source,decoder,sink,NULL);

//依次連線元件
  gst_element_link_many(source,decoder,sink,NULL);

//開始播放
   gst_element_set_state(pipeline,GST_STATE_PLAYING);
    g_print("Running\n");

//開始迴圈
    g_main_loop_run(loop);
    g_print("Returned,stoppingplayback\n");
   gst_element_set_state(pipeline,GST_STATE_NULL);
   gst_object_unref(GST_OBJECT(pipeline));

return 0;
}

 

生成可執行檔案

 

上述程式碼儲存在 test.c 檔案中,之後執行下面的命令進行編譯(網上很多其他的編譯命令會報錯):
gcc -Wall test.c -o test $(pkg-config --cflags --libs gstreamer-0.10)
之後,當前目錄下會生成一個test的可執行檔案。

 

【補充】網上很多都是: gcc -Wall $(pkg-config --cflags --libs gstreamer-0.10) test.c -otest ,這樣就會產生因為命令的先後順序帶來的錯誤。原因如下:
對於C/C++編譯而言,讀取編譯選項是按照從左到右的順序執行的。那麼當編譯器遇到原始檔的時候,就開始對原始檔中用到的函式進行解析,找到相對應的函式的函式體或者說是實現。這個過程是按照先遇到不能解析的函式,然後在原始檔選項後面的一些選項中

尋找可能的函式體的資訊,是這樣的一個順序進行的。那麼我們可以發現對於錯誤的命令,由於包含函式體或者函式定義資訊的編譯選項出現在原始檔之前,那麼當編譯器在原始檔中遇到不能解析的函式時,在原始檔之後的選項中尋找相關的資訊,那麼,就出現了編譯錯誤,也就是無法找到相關的函式定義。

·        執行
./test test.mp3

 

來自 <http://blog.csdn.net/hust_sheng/article/details/50575646>

 

安裝glib

1.缺少libmount

 

 

2.configure: error: ncurses orncursesw selected, but library not found (--without-ncurses to disable)

 

 

sudo apt-get install libncurses-dev

 

來自 <http://blog.csdn.net/u013308744/article/details/69943779>