XML Shareable Playlist Format: Difference between revisions

Content deleted Content added
alphabetized the categories
m Removing link(s) undefined (XFDcloser)
 
(20 intermediate revisions by 19 users not shown)
Line 13:
}}
 
'''XML Shareable Playlist Format''' ('''XSPF'''), pronounced ''spiff'',<ref>{{cite web |url=httphttps://xspf.org/quickstart/|title=XSPF: XML Shareable Playlist Format: Quick Start|accessdateaccess-date=2009-04-23}}</ref> is an [[XML]]-based [[playlist]] format for [[digital media]], sponsored by the [[Xiph.Org Foundation]].
 
XSPF is a file format for sharing the kind of [[playlist]] that can be played on a personal computer or portable device. In the same way that any user on any computer can open any Web page, XSPF is intended to provide portability for playlists.
Line 20:
Traditionally playlists have been composed of file paths that pointed to individual titles. This allowed a playlist to be played locally on one machine or shared if the listed file paths were URLs accessible to more than one machine (e.g., on the Web). XSPF's meta-data rich open format has permitted a new kind of playlist sharing called ''content resolution''.
 
A simple form of content resolution is the localisation of a playlist based on [[metadata]]. An XSPF-compliant content resolver will open XSPF playlists and search a catalog for every title with <ttcode>&lt;creator&gt;</ttcode>, <ttcode>&lt;album&gt;</ttcode> and <ttcode>&lt;title&gt;</ttcode> tags, then localise the playlist to reference the available matching tracks. A catalog may reference a collection of media files on a local disk, a music subscription service like Yahoo! Music Unlimited, or some other searchable archive. The end result is shareable playlists that are not tied to a specific collection or service.
 
== Example of an XSPF 1.0 playlist ==
<sourcesyntaxhighlight lang="xml">
<?xml version="1.01" encoding="UTF-8"?>
<playlist version="1" xmlns="http://xspf.org/ns/0/">
<trackList>
<track>
<title>Windows Path</title>
<___location>file:///C:/\music/\foo.mp3</___location>
</track>
<track>
Line 45:
</trackList>
</playlist>
</syntaxhighlight>
</source>
 
== History ==
Line 53:
 
== Features ==
* A playlist format like [[M3U]] or [[Advanced Stream Redirector|ASX]]
* [[MIME]] content-type of <ttcode>application/xspf+xml</ttcode>
* Patent-free (no patents by the primary authors)
* Specification under the [[Creative Commons license|Creative Commons Attribution-NoDerivs 2.5 license]]
Line 64:
{{category see also|Media players|Tag editors}}
* [[Amarok (software)|Amarok]]
* [[Foobar2000]] (with appropriate plugin)
* [[Audacious (software)|Audacious]]
* [[Banshee (media player)|Banshee]]
* [[Clementine (software)|Clementine]]
* [[Tomahawk (software)|Tomahawk]]
* [http://www.tomahawk-player.org/ Tomahawk Music Player]
* [[VLC media player]] (stand-alone player, available on every major platform)
* [[XMMS2]] (has a plugin to parse XSPF)
* [[Last.fm]] (export of playlists and personal tag radios in XSPF)
* [http://resp.in/ re/spin[Soundiiz]] (playlist converter for [[Rdio]]several streaming sites)
* [[youtube-dl]] (downloader)
* [http://soundiiz.com/#/converter Soundiiz] (playlist converter for several streaming sites) -[[Soundiiz]]
 
==See also==
{{Portal|Free and open-source software}}
; Other playlist file formats
* [[Advanced Stream Redirector|ASX]] - Windows media
* [[M3U]] - The most common playlist format
* [[PLS (file format)|PLS]] - SHOUTcast
* [[Windows Media Player Playlist|WPL]] - Windows Media Player
 
==References==
Line 86 ⟶ 85:
 
== External links ==
* {{official website|httphttps://xspf.org/}}
* [httphttps://validator.xspf.org/ Online XSPF Validator]
* [httphttps://xspf.org/xspf-v1.htmlspec XSPF Version 1 specification].
 
{{Xiph.org}}