After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 551393 - Support more metadata for xspf playlist writing
Support more metadata for xspf playlist writing
Status: RESOLVED FIXED
Product: totem-pl-parser
Classification: Core
Component: General
unspecified
Other Linux
: Normal normal
: ---
Assigned To: totem-pl-parser-maint
totem-pl-parser-maint
Depends on:
Blocks: 375665
 
 
Reported: 2008-09-08 16:00 UTC by Bastien Nocera
Modified: 2015-10-28 15:44 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Bastien Nocera 2008-09-08 16:00:29 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.
Comment 1 Bastien Nocera 2010-01-08 17:31:23 UTC
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.
Comment 2 Bastien Nocera 2010-01-08 17:32:22 UTC
Fixed in 168293fe0f26a79fd0a42e9c693a16798f7a69d8
Comment 3 Jared Smith 2015-10-28 15:38:47 UTC
(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.
Comment 4 Bastien Nocera 2015-10-28 15:44:09 UTC
(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.