From 1d5a6627d8bccd6f90a9a245e96f9f65757ff30f Mon Sep 17 00:00:00 2001 From: Mathieu Duponchelle Date: Tue, 13 Jun 2017 02:32:09 +0200 Subject: [PATCH] discoverer: output whether the uri is live https://bugzilla.gnome.org/show_bug.cgi?id=783722 --- tools/gst-discoverer.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/gst-discoverer.c b/tools/gst-discoverer.c index 37bb985..52ab513 100644 --- a/tools/gst-discoverer.c +++ b/tools/gst-discoverer.c @@ -365,6 +365,8 @@ print_properties (GstDiscovererInfo * info, gint tab) GST_TIME_ARGS (gst_discoverer_info_get_duration (info))); g_print ("%*sSeekable: %s\n", tab + 1, " ", (gst_discoverer_info_get_seekable (info) ? "yes" : "no")); + g_print ("%*sLive: %s\n", tab + 1, " ", + (gst_discoverer_info_get_live (info) ? "yes" : "no")); if ((tags = gst_discoverer_info_get_tags (info))) { g_print ("%*sTags: \n", tab + 1, " "); gst_tag_list_foreach (tags, print_tag_foreach, GUINT_TO_POINTER (tab + 2)); -- 2.7.4