GNOME Bugzilla – Bug 551393
Support more metadata for xspf playlist writing
Last modified: 2015-10-28 15:44:09 UTC
+++ This bug was initially created as a clone of Bug #375665 +++ It might be nice to support XSPF playlists. http://www.xspf.org/ I came across this while looking for a good XML format to use with XSLT to produce track-list printouts for playlists/CDs. Might also be nice to adopt this for internal use too.
The XSPF bits now know how to write all those fields: static struct { const char *field; const char *element; } fields[] = { { TOTEM_PL_PARSER_FIELD_TITLE, "title" }, { TOTEM_PL_PARSER_FIELD_AUTHOR, "creator" }, { TOTEM_PL_PARSER_FIELD_IMAGE_URI, "image" }, { TOTEM_PL_PARSER_FIELD_ALBUM, "album" }, { TOTEM_PL_PARSER_FIELD_DURATION_MS, "duration" }, }; Let me know if there are any you'd like to see added.
Fixed in 168293fe0f26a79fd0a42e9c693a16798f7a69d8
(In reply to Bastien Nocera from comment #2) > Fixed in 168293fe0f26a79fd0a42e9c693a16798f7a69d8 Please add track number support, xml tag is <trackNum> in the xspf version 1 specification.
(In reply to Jared Smith from comment #3) > (In reply to Bastien Nocera from comment #2) > > Fixed in 168293fe0f26a79fd0a42e9c693a16798f7a69d8 > > Please add track number support, xml tag is <trackNum> in the xspf version 1 > specification. Commenting on a bug closed five years ago isn't going to get you anywhere. File a new bug and explain why you need that tag/where it's going to be used.