GStreamer —— 2.15、Windows下Qt加载GStreamer库后运行 - “播放教程 1: ...

宁睿  论坛元老 | 2025-3-12 20:02:47 | 显示全部楼层 | 阅读模式
打印 上一主题 下一主题

主题 1039|帖子 1039|积分 3127

运行效果



介绍

     我们已经使用了这个元素,它能够构建一个完整的播放管道,而无需做太多工作。 本教程介绍怎样进一步自界说,以防其默认值不适合我们的特定需求。将学习:
          • 怎样确定文件包含多少个流,以及怎样切换 其中。
          • 怎样网络有关每个流的信息。
     通常环境下,多个音频、视频和字幕流可以是嵌入在单个文件中。最常见的环境是常规影戏,其中包含一个视频和音频流(立体声或 5.1 音轨被视为单个流)。它也越来越 常见查找具有一个视频和多个音频流的影戏,以考虑差别的语言。在这种环境下,用户选择一个 audio 流,而且应用步伐将仅播放该流。为了能够选择合适的流,用户需要知道有关他们的某些信息,例如他们的语言。这 信息以 “元数据” 的情势嵌入到流中 (附加的数据),本教程将介绍怎样检索它。

GStreamer相干运行库

  1. INCLUDEPATH += D:/Software/GStreamer/1.0/mingw_x86_64/include/gstreamer-1.0/gst
  2. INCLUDEPATH += D:/Software/GStreamer/1.0/mingw_x86_64/include
  3. INCLUDEPATH += D:/Software/GStreamer/1.0/mingw_x86_64/include/gstreamer-1.0
  4. INCLUDEPATH += D:/Software/GStreamer/1.0/mingw_x86_64/include/glib-2.0
  5. INCLUDEPATH += D:/Software/GStreamer/1.0/mingw_x86_64/lib/glib-2.0/include
  6. LIBS += D:/Software/GStreamer/1.0/mingw_x86_64/lib/gstreamer-1.0.lib
  7. LIBS += D:/Software/GStreamer/1.0/mingw_x86_64/lib/glib-2.0.lib
  8. LIBS += D:/Software/GStreamer/1.0/mingw_x86_64/lib/gobject-2.0.lib
复制代码

源码

  1. #include <gst/gst.h>
  2. #include <iostream>
  3. #include <stdio.h>
  4. typedef struct _CustomData
  5. {
  6.     GstElement *playbin;    /* 播放元素 */
  7.     gint n_video;          /* 视频流数量 */
  8.     gint n_audio;          /* 音频流数量 */
  9.     gint n_text;           /* 字幕流数量 */
  10.     gint current_video;    /* 当前正在播放视频流 */
  11.     gint current_audio;    /* 当前正在播放音频流 */
  12.     gint current_text;     /* 当前正在播放字母流*/
  13.     GMainLoop *main_loop;  /* glib主循环 */
  14. } CustomData;
  15. /* playbin flags */
  16. typedef enum
  17. {
  18.     GST_PLAY_FLAG_VIDEO         = (1 << 0), /* We want video output */
  19.     GST_PLAY_FLAG_AUDIO         = (1 << 1), /* We want audio output */
  20.     GST_PLAY_FLAG_TEXT          = (1 << 2)  /* We want subtitle output */
  21. } GstPlayFlags;
  22. /* Forward definition for the message and keyboard processing functions */
  23. static gboolean handle_message (GstBus *bus, GstMessage *msg, CustomData *data);
  24. static gboolean handle_keyboard (GIOChannel *source, GIOCondition cond, CustomData *data);
  25. int main(int argc, char *argv[])
  26. {
  27.     /* 初始化GStreamer */
  28.     gst_init (&argc, &argv);
  29.     /* 创建元素 */
  30.     CustomData data;
  31.     data.playbin = gst_element_factory_make ("playbin", "playbin");
  32.     if (!data.playbin) { g_printerr ("Not all elements could be created.\n"); return -1;}
  33.     /* 设置播放的uri */
  34.     g_object_set (data.playbin, "uri", "https://gstreamer.freedesktop.org/data/media/sintel_cropped_multilingual.webm", NULL);
  35.     /* 设置标志以显示音频和视频,但忽略字幕 */
  36.     gint flags;
  37.     g_object_get (data.playbin, "flags", &flags, NULL);
  38.     flags |= GST_PLAY_FLAG_VIDEO | GST_PLAY_FLAG_AUDIO;
  39.     flags &= ~GST_PLAY_FLAG_TEXT;
  40.     g_object_set (data.playbin, "flags", flags, NULL);
  41.     /* 设置连接速度。这将影响playbin的一些内部决策 */
  42.     g_object_set (data.playbin, "connection-speed", 56, NULL);
  43.     /* 添加bus监视,这样就可以在消息到达时收到通知 */
  44.     GstBus *bus = gst_element_get_bus (data.playbin);
  45.     gst_bus_add_watch (bus, (GstBusFunc)handle_message, &data);
  46.     /* 添加键盘监视,以便我们收到按键通知 */
  47. #ifdef G_OS_WIN32
  48.     GIOChannel *io_stdin = g_io_channel_win32_new_fd (fileno (stdin));
  49. #else
  50.     GIOChannel *io_stdin = g_io_channel_unix_new (fileno (stdin));
  51. #endif
  52.     g_io_add_watch (io_stdin, G_IO_IN, (GIOFunc)handle_keyboard, &data);
  53.     /* 开始播放 */
  54.     GstStateChangeReturn ret = gst_element_set_state (data.playbin, GST_STATE_PLAYING);
  55.     if (ret == GST_STATE_CHANGE_FAILURE)
  56.     {
  57.         g_printerr ("Unable to set the pipeline to the playing state.\n");
  58.         gst_object_unref (data.playbin); return -1;
  59.     }
  60.     /* 创建GLib主循环并将其设置为运行 */
  61.     data.main_loop = g_main_loop_new (NULL, FALSE);
  62.     g_main_loop_run (data.main_loop);
  63.     /* 释放资源 */
  64.     g_main_loop_unref (data.main_loop);
  65.     g_io_channel_unref (io_stdin);
  66.     gst_object_unref (bus);
  67.     gst_element_set_state (data.playbin, GST_STATE_NULL);
  68.     gst_object_unref (data.playbin);
  69.     return 0;
  70. }
  71. /* 从流中提取一些元数据并将其打印在屏幕上 */
  72. static void analyze_streams (CustomData *data)
  73. {
  74.     gchar *str;
  75.     guint rate;
  76.     /* 读取一些属性 */
  77.     g_object_get (data->playbin, "n-video", &data->n_video, NULL);
  78.     g_object_get (data->playbin, "n-audio", &data->n_audio, NULL);
  79.     g_object_get (data->playbin, "n-text", &data->n_text, NULL);
  80.     g_print ("%d video stream(s), %d audio stream(s), %d text stream(s)\n", data->n_video, data->n_audio, data->n_text);
  81.     g_print ("\n");
  82.     GstTagList *tags;
  83.     for (gint i = 0; i < data->n_video; i++)
  84.     {
  85.         tags = NULL;
  86.         /* 检索流的视频标签 */
  87.         g_signal_emit_by_name (data->playbin, "get-video-tags", i, &tags);
  88.         if (tags)
  89.         {
  90.             g_print ("video stream %d:\n", i);
  91.             gst_tag_list_get_string (tags, GST_TAG_VIDEO_CODEC, &str);
  92.             g_print ("  codec: %s\n", str ? str : "unknown");
  93.             g_free (str);
  94.             gst_tag_list_free (tags);
  95.         }
  96.     }
  97.     g_print ("\n");
  98.     for (gint i = 0; i < data->n_audio; i++)
  99.     {
  100.         tags = NULL;
  101.         /* 检索流的音频标签 */
  102.         g_signal_emit_by_name (data->playbin, "get-audio-tags", i, &tags);
  103.         if (tags)
  104.         {
  105.             g_print ("audio stream %d:\n", i);
  106.             if (gst_tag_list_get_string (tags, GST_TAG_AUDIO_CODEC, &str))
  107.             {
  108.                 g_print ("  codec: %s\n", str);
  109.                 g_free (str);
  110.             }
  111.             if (gst_tag_list_get_string (tags, GST_TAG_LANGUAGE_CODE, &str))
  112.             {
  113.                 g_print ("  language: %s\n", str);
  114.                 g_free (str);
  115.             }
  116.             if (gst_tag_list_get_uint (tags, GST_TAG_BITRATE, &rate))
  117.             {
  118.                 g_print ("  bitrate: %d\n", rate);
  119.             }
  120.             gst_tag_list_free (tags);
  121.         }
  122.     }
  123.     g_print ("\n");
  124.     for (gint i = 0; i < data->n_text; i++)
  125.     {
  126.         tags = NULL;
  127.         /* 检索流的字幕标签 */
  128.         g_signal_emit_by_name (data->playbin, "get-text-tags", i, &tags);
  129.         if (tags)
  130.         {
  131.             g_print ("subtitle stream %d:\n", i);
  132.             if (gst_tag_list_get_string (tags, GST_TAG_LANGUAGE_CODE, &str))
  133.             {
  134.                 g_print ("  language: %s\n", str);
  135.                 g_free (str);
  136.             }
  137.             gst_tag_list_free (tags);
  138.         }
  139.     }
  140.     g_object_get (data->playbin, "current-video", &data->current_video, NULL);
  141.     g_object_get (data->playbin, "current-audio", &data->current_audio, NULL);
  142.     g_object_get (data->playbin, "current-text", &data->current_text, NULL);
  143.     g_print ("\n");
  144.     g_print ("Currently playing video stream %d, audio stream %d and text stream %d\n", data->current_video, data->current_audio, data->current_text);
  145.     g_print ("Type any number and hit ENTER to select a different audio stream\n");
  146. }
  147. /* 处理GStreamer的消息 */
  148. static gboolean handle_message (GstBus *bus, GstMessage *msg, CustomData *data)
  149. {
  150.     GError *err;
  151.     gchar *debug_info;
  152.     switch (GST_MESSAGE_TYPE (msg))
  153.     {
  154.     case GST_MESSAGE_ERROR:
  155.         gst_message_parse_error (msg, &err, &debug_info);
  156.         g_printerr ("Error received from element %s: %s\n", GST_OBJECT_NAME (msg->src), err->message);
  157.         g_printerr ("Debugging information: %s\n", debug_info ? debug_info : "none");
  158.         g_clear_error (&err); g_free (debug_info); g_main_loop_quit (data->main_loop);
  159.         break;
  160.     case GST_MESSAGE_EOS:
  161.         g_print ("End-Of-Stream reached.\n");
  162.         g_main_loop_quit (data->main_loop);
  163.         break;
  164.     case GST_MESSAGE_STATE_CHANGED:
  165.     {
  166.         GstState old_state, new_state, pending_state;
  167.         gst_message_parse_state_changed (msg, &old_state, &new_state, &pending_state);
  168.         if (GST_MESSAGE_SRC (msg) == GST_OBJECT (data->playbin))
  169.         {
  170.             if (new_state == GST_STATE_PLAYING)
  171.             {
  172.                 /* 一旦我们进入播放状态,分析流 */
  173.                 analyze_streams (data);
  174.             }
  175.         }
  176.     } break;
  177.     }
  178.     /* 继续收到消息 */
  179.     return TRUE;
  180. }
  181. /* 处理键盘输入 */
  182. static gboolean handle_keyboard (GIOChannel *source, GIOCondition cond, CustomData *data)
  183. {
  184.     gchar *str = NULL;
  185.     if (g_io_channel_read_line (source, &str, NULL, NULL, NULL) == G_IO_STATUS_NORMAL)
  186.     {
  187.         int index = g_ascii_strtoull (str, NULL, 0);
  188.         if (index < 0 || index >= data->n_audio)
  189.         {
  190.             g_printerr ("Index out of bounds\n");
  191.         }
  192.         else
  193.         {
  194.             /* 如果输入是有效的音频流索引,请设置当前音频流 */
  195.             g_print ("Setting current audio stream to %d\n", index);
  196.             g_object_set (data->playbin, "current-audio", index, NULL);
  197.         }
  198.     }
  199.     g_free (str);
  200.     return TRUE;
  201. }
复制代码

关注

   笔者 - jxd

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

宁睿

论坛元老
这个人很懒什么都没写!
快速回复 返回顶部 返回列表