2017-10-26 1 views
0

C 코드를 사용하여 .mp4 비디오를 시작하려고합니다.이 간단한 예제를 발견했지만 videoenc 요소는 항상 null이며 항상 videoenc을 만들 수 없습니다. 간단한 예제를 사용하여 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 

버그를 사용하려고 : 여기에 전체 코드입니다 ffdec_mpeg4이

하십시오

를 찾을 수 없습니다, 나를 사용하여 비디오를 시작하는 데 도움이 Ubuntu의 c 코드 16.04.

답변

0

MP4 파일에 MPEG4 비디오가 포함되어 있습니까? 어쩌면 H.264일까요? 어쨌든, 이름 체계는 GStreamer의 이전 버전에서 나온 것 같습니다. 최신 이름은 avdec_mpeg4입니다. 그러나 libav Gstreamer 플러그인이 설치되어 있는지 확인하십시오.

+0

안녕하세요, 답변 해 주셔서 avdec_mpeg4로 변경했으며 모든 요소가 만들어졌습니다. 그러나 문제는 비디오 dooes가 나타나지 않는 것입니다. 이 코드 좀 봐 주시겠습니까? 다음과 같은 출력이 있습니다 - 요소가 생성되었습니다 파이프 라인에 모든 요소를 ​​추가했습니다. 모든 요소를 ​​함께 연결했습니다. 비디오 재생 실행 중 ... – dsfdsf

관련 문제