diff --git a/sources/custom/TagList.cs b/sources/custom/TagList.cs index 6003b574b8..63680ce612 100644 --- a/sources/custom/TagList.cs +++ b/sources/custom/TagList.cs @@ -41,6 +41,17 @@ namespace Gst } } + public string[] Tags { + get { + int size = NTags (); + string[] tags = new string[size]; + for (uint i = 0; i < size; i++) + tags [i] = NthTagName (i); + + return tags; + } + } + public void Add (Gst.TagMergeMode mode, string tag, object value) { if (!Tag.Exists (tag))