[gstreamer-bugs] [Bug 306817] No way to set tags in gst-python
GStreamer (bugzilla.gnome.org)
bugzilla-daemon at bugzilla.gnome.org
Thu Nov 10 04:58:48 PST 2005
Do not reply to this via email (we are currently unable to handle email
responses and they get discarded). You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=306817
GStreamer | gst-python | Ver: 0.9.x
Edward Hervey changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From Edward Hervey 2005-11-10 12:58 -------
Fixed in 0.9 cvs, you can now create a TagList (which you could already do), and
it behaves just like a dictionnary.
mytaglist = gst.TagList()
mytaglist[gst.TAG_ARTIST] = "George Clinton and the Parliament Funkadelics"
mytaglist[gst.TAG_TITLE] = "Free your mind and your ass will follow"
for tag in mytaglist.keys():
print tag, ":", mytaglist[tag]
del mytaglist[gst.TAG_TITLE]
And of course you can use the TagSetter interface to set tags.
------- You are receiving this mail because: -------
You are the assignee for the bug.
More information about the Gstreamer-bugs
mailing list