2
A
回答
2
這將是GStreamer管道的源代碼videotestsec ! autovideosink
。它會顯示一個不錯的視頻輸出...
先決條件 確保您安裝了GStreamer和gcc。
添加下面的源代碼到helloworld.c
#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, *videotestsrcm, *autovideosinkm;
GstBus *bus;
guint bus_watch_id;
/* Initialisation */
gst_init (&argc, &argv);
loop = g_main_loop_new (NULL, FALSE);
/* Create gstreamer elements */
pipeline = gst_pipeline_new ("videotest-pipeline");
videotestsrcm = gst_element_factory_make ("videotestsrc", "testsource");
autovideosinkm = gst_element_factory_make ("autovideosink", "videosink");
if (!pipeline || !videotestsrcm || !autovideosinkm) {
g_printerr ("One element could not be created. Exiting.\n");
return -1;
}
/* Set up the pipeline */
/* we add a message handler */
bus = gst_pipeline_get_bus (GST_PIPELINE (pipeline));
bus_watch_id = 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),
videotestsrcm, autovideosinkm, NULL);
/* we link the elements together */
/* videotestsrcm -> autovideosinkm */
gst_element_link (videotestsrcm, autovideosinkm);
/* Set the pipeline to "playing" state*/
g_print ("Now set pipeline in state playing");
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));
g_source_remove (bus_watch_id);
g_main_loop_unref (loop);
return 0;
}
編譯
gcc -Wall helloworld.c -o helloworld $(pkg-config --cflags --libs gstreamer-1.0)
運行它
./helloworld
相關問題
- 1. 有一個簡單的Nodejs/Mongoose應用程序的例子嗎?
- 2. 這是一個簡單的單子例子嗎?
- 3. sbt和antlr,有簡單的例子嗎?
- 4. Vuforia SDK有更簡單的例子嗎?
- 5. 的Gstreamer例子
- 6. 有人能給我一個簡單的COcos2d-X粒子例子嗎?
- 7. MVC3 DropDownListFor - 一個簡單的例子?
- 8. WPF + MVVM + Nhibernate:一個簡單的例子?
- 9. 實現OAuth2.0的一個簡單例子
- 10. gstreamer:如何使用typefind - 一個例子
- 11. 請求一個GKStateMachine的簡單例子嗎?
- 12. 有沒有人有一個單一的ContentPresenter UserControl的簡單例子?
- 13. 有沒有一個簡單的例子如何使用buckminster
- 14. 在d3中有單軸縮放的簡單例子嗎?
- 15. C#類繼承和一個簡單的例子
- 16. Javascript'this'reference - 有人可以解釋一下這個簡單的例子嗎?
- 17. 簡單的例子
- 18. 簡單的例子
- 19. Keras autoencoder簡單的例子有一個奇怪的輸出
- 20. Objective-C中簡單的http post例子?
- 21. 有一個簡單的JavaScript滑塊嗎?
- 22. text-decoration:none;沒有一個簡單的例子
- 23. 在C#中尋找一個簡短和簡單的getter/setter例子
- 24. 什麼是C++單形類,這是一個例子嗎?
- 25. 有沒有人有一個工作的DojoX網格控件的簡單例子?
- 26. 有人可以給出一個簡單的例子,使用一個不可擴展的鎖嗎?
- 27. linux uinput:簡單的例子?
- 28. Qt:Quazip的簡單例子
- 29. 簡單的例子:HBase + Spring
- 30. 關閉的簡單例子