2017-10-26 12 views
0

Cコードを使って.mp4ビデオを起動しようとしていますが、この単純な例が見つかりましたが、videoenc要素は常にnullです。ここでは、完全なコードは次のとおりです。ffdec_mpeg4がGStreamerで簡単な例を使ってビデオを起動できない

をしてください見つかりませんでした、使用してビデオを起動するために私を助ける:

#include <gst/gst.h> 
#include <glib.h> 

static gboolean bus_call (GstBus *bus, GstMessage *msg, gpointer data) 
{ 
    GMainLoop *loop = (GMainLoop *) data; 

    switch (GST_MESSAGE_TYPE (msg)) { 

    case GST_MESSAGE_EOS: 
     g_print ("End of stream\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, *videosrc, *colorspace, *videoenc, 
    *videoq, *audiosrc, *conv, *audioenc, *audioq, *muxer, *sink; 

    GstBus *bus; 

    /* Initialisation */ 
    gst_init (NULL, NULL); 

    loop = g_main_loop_new (NULL, FALSE); 

    /* Create gstreamer elements */ 
    pipeline = gst_pipeline_new ("audio-player"); 
    videosrc = gst_element_factory_make ("filesrc", "videosrc"); 
    muxer = gst_element_factory_make ("qtdemux", "mux"); 
    videoenc = gst_element_factory_make ("ffdec_mpeg4", "videoenc"); 
    sink = gst_element_factory_make ("autovideosink", "sink"); 

    if(!videoenc) 
    { 
     printf("could not create videoenc \n"); 
    } 
    if (!pipeline || !videosrc || !muxer || !videoenc 
     || !sink) { 
    g_printerr ("One element could not be created. Exiting.\n"); 
    return -1; 
    } 

    /* Set up the pipeline */ 
    g_print ("Elements are created\n"); 

    /* set the properties of other elements */ 
    g_object_set (G_OBJECT (videosrc), "location", "/home/user/somevideo.mp4", NULL); 

    /* we add a message handler */ 
    bus = gst_pipeline_get_bus (GST_PIPELINE (pipeline)); 
    gst_bus_add_watch (bus, bus_call, loop); 
    gst_object_unref (bus); 

    /* we add all elements into the pipeline */ 
    gst_bin_add_many (GST_BIN (pipeline), 
    videosrc, muxer, videoenc, 
    sink, NULL); 

    g_print ("Added all the Elements into the pipeline\n"); 

    /* we link the elements together */ 
    gst_element_link_many (videosrc, muxer, videoenc, sink, 
     NULL); 

    g_print ("Linked all the Elements together\n"); 
    /* Set the pipeline to "playing" state*/ 
    g_print ("Playing the video\n"); 
    gst_element_set_state (pipeline, GST_STATE_PLAYING); 

    /* Iterate */ 
    g_print ("Running...\n"); 
    g_main_loop_run (loop); 

    /* Out of the main loop, clean up nicely */ 
    g_print ("Returned, stopping playback\n"); 
    gst_element_set_state (pipeline, GST_STATE_NULL); 

    g_print ("Deleting pipeline\n"); 
    gst_object_unref (GST_OBJECT (pipeline)); 

    return 0; 
} 

また、私は、私は端末エラーで参照バグ

gst-launch-1.0 -v filesrc location=/home/user/somevideo.mp4 ! qtdemux ! ffdec_mpeg4 ! autovideosink 

このコマンドを使用しようとしましたUbuntuのcコード16.04。

答えて

0

MP4ファイルにはMPEG4ビデオが含まれていますか?たぶんそれはH.264ですか?とにかく、名前スキームはGStreamerの古いバージョンのようです。新しい名前はavdec_mpeg4です。しかし、libav Gstreamerプラグインがインストールされていることを確認してください。

+0

お返事ありがとう、私はavdec_mpeg4に変更し、すべての要素が作成されました。しかし、問題はビデオdooesが表示されていないです。このコードを見ていただけますか?私は次の出力を持っています - 要素が作成されました すべての要素をパイプラインに追加しました すべての要素をまとめてリンクしました ビデオを再生 実行中... – dsfdsf

関連する問題