To install click the Add extension button. That's it.

The source code for the WIKI 2 extension is being checked by specialists of the Mozilla Foundation, Google, and Apple. You could also do it yourself at any point in time.

4,5
Kelly Slayton
Congratulations on this excellent venture… what a great idea!
Alexander Grigorievskiy
I use WIKI 2 every day and almost forgot how the original Wikipedia looks like.
Live Statistics
English Articles
Improved in 24 Hours
Added in 24 Hours
What we do. Every page goes through several hundred of perfecting techniques; in live mode. Quite the same Wikipedia. Just better.
.
Leo
Newton
Brights
Milds

XML Shareable Playlist Format

From Wikipedia, the free encyclopedia

XSPF
Filename extension
.xspf
Internet media type
application/xspf+xml
Developed byXiph.Org Foundation
Type of formatPlaylist
Extended fromXML

XML Shareable Playlist Format (XSPF), pronounced spiff,[1] 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.

YouTube Encyclopedic

  • 1/3
    Views:
    13 835
    1 030
    7 200
  • 7. Wrap It Up - Flash Scroll List MP3 Player AS3 XML Playlist Tutorial
  • ActionScript 3.0 Flash CS5/CS6 Classroom in a Book: Lesson 10 - Working with an XML Playlist
  • How to save Rekordbox tracklist to file, mail or social media //setlist export

Transcription

Content resolution

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 <creator>, <album> and <title> 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

<?xml version="1.1" 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>
      <title>Linux Path</title>
      <location>file:///media/music/foo.mp3</location>
    </track>
    <track>
      <title>Relative Path</title>
      <location>music/foo.mp3</location>
    </track>
    <track>
      <title>External Example</title>
      <location>http://www.example.com/music/bar.ogg</location>
    </track>
  </trackList>
</playlist>

History

XSPF was created by an ad hoc working group that commenced activities in February 2004, achieved rough consensus on version 0 in April 2004, worked on implementations and fine tuning throughout summer and fall 2004, and declared the tuned version to be version 1 in January 2005.

XSPF is not a recommendation of any standards body besides the Xiph.Org Foundation.

Features

Software and web playlist converters

See also

Other playlist file formats
  • ASX - Windows media
  • M3U - The most common playlist format
  • PLS - SHOUTcast
  • WPL - Windows Media Player

References

  1. ^ "XSPF: XML Shareable Playlist Format: Quick Start". Retrieved 2009-04-23.

External links

This page was last edited on 1 June 2024, at 21:09
Basis of this page is in Wikipedia. Text is available under the CC BY-SA 3.0 Unported License. Non-text media are available under their specified licenses. Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc. WIKI 2 is an independent company and has no affiliation with Wikimedia Foundation.