Skip to content

Commit

Permalink
discoverer: output whether the uri is live
Browse files Browse the repository at this point in the history
  • Loading branch information
MathieuDuponchelle committed Oct 11, 2017
1 parent 545e0b0 commit 1d5a662
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tools/gst-discoverer.c
Expand Up @@ -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));
Expand Down

0 comments on commit 1d5a662

Please sign in to comment.