XSPF

举报
aiot_bigbear 发表于 2022/09/25 05:02:44 2022/09/25
942 0 0
【摘要】 XSPF, pronounced "spiff", is a playlist in XML format, which is supported by Xiph. It is a free and open format so can be easily, freely used for sharing playlists. ...

XSPF, pronounced "spiff", is a playlist in XML format, which is supported by Xiph. It is a free and open format so can be easily, freely used for sharing playlists.

Sample

A very simple document looks like this:

<?xml version="1.0" encoding="UTF-8"?>
 <playlist version="1" xmlns="http://xspf.org/ns/0/">
    <trackList>
        <track><location>file:///mp3s/song_1.mp3</location></track>
        <track><location>file:///mp3s/song_2.mp3</location></track>
        <track><location>file:///mp3s/song_3.mp3</location></track>
    </trackList>
 </playlist>

Compatability

Do you know more about the compatability of XSPF? Please add it here

VLC Extensions

XSPF supports extensions to allow applications to add special data. These extensions can appear in the following entries:

  • playlist
  • track

The extension format is defined in the namespace xmlns:vlc="http://www.videolan.org/vlc/playlist/ns/0/":

<playlist version="1" xmlns="http://xspf.org/ns/0/" xmlns:vlc="http://www.videolan.org/vlc/playlist/ns/0/">
 ...
 <extension application="http://www.videolan.org/vlc/playlist/0">
  ...
 </extension>
</playlist>

Currently, extensions support the following elements:

  • vlc:node
  • vlc:item
  • vlc:id
  • vlc:option

The extensions vlc:node and vlc:item are used to specify how to display the playlist tree, which is not supported by standard XSPF.

vlc:node

This element will be displayed as a node in the playlist. It appears as an extension of the playlist block (under playlist/extension). Only its name can be specified:

<vlc:node title="Node title">
 [list of vlc:item or vlc:node]
</vlc:node>

vlc:item

This element represents a playlist item (not a node). It appears as an extension of the playlist block (under playlist/extension). It contains only a track id (see below, vlc:id):

<vlc:item tid="42" />

vlc:id

This element specifies a track's id. It appears as an extension of the track block (under playlist/trackList/track/extension).

<vlc:id>42</vlc:id>

The value of the id corresponds to the value of the attribute tid of vlc:item.Note that each vlc:id has to be different, per entry, or it will not show them all.

vlc:option

This element allows you to add options to the input item. It appears as an extension of the track block (under playlist/trackList/track/extension).

<vlc:option>option-name</vlc:option>

Or, if the option has a value:

<vlc:option>option-name=option-value</vlc:option>

Example of XSPF with VLC extensions

Let's summarize these as an example. This one shows passing VLC options per specified entry in the playlist.

<?xml version="1.0" encoding="UTF-8"?>
<playlist version="1" xmlns="http://xspf.org/ns/0/" xmlns:vlc="http://www.videolan.org/vlc/playlist/ns/0/">
   <title>Playlist</title>
   <location>D:/media/example.xspf</location>
   <trackList>
       <track>
           <title>DVD seconds 42 to 45 muted</title>
           <location>dvd://d:\@1</location>
           <extension application="http://www.videolan.org/vlc/playlist/0">
               <vlc:id>3</vlc:id>
               <vlc:option>start-time=42</vlc:option>
               <vlc:option>stop-time=45</vlc:option>
               <vlc:option>no-audio</vlc:option>
               <vlc:option>some-option=100</vlc:option>
           </extension>
       </track>
       <track>
           <title>DVD seconds 49-55 unmuted (normal)</title>
           <location>dvd://d:\@1</location>
           <extension application="http://www.videolan.org/vlc/playlist/0">
               <vlc:id>4</vlc:id>
               <vlc:option>start-time=49</vlc:option>
               <vlc:option>stop-time=55</vlc:option>
           </extension>
       </track>
   </trackList>
</playlist>
 

Here is an example that shows how you can have it show nested entries within the playlist window:

<?xml version="1.0" encoding="UTF-8"?>
<playlist version="1" xmlns="http://xspf.org/ns/0/" xmlns:vlc="http://www.videolan.org/vlc/playlist/ns/0/">
    <title>Playlist</title>
    <location>D:/media/example.xspf</location>
    <trackList>
        <track>
            <title>Track 1</title>
            ...
            <extension application="http://www.videolan.org/vlc/playlist/0">
                <vlc:id>0</vlc:id>
            </extension>
            
        </track>
        <track>
            <title>Track 2</title>
            ...
            <extension application="http://www.videolan.org/vlc/playlist/0">
                <vlc:id>1</vlc:id>
            </extension>
        </track>
        <track>
            <title>Track 3</title>
            ...
            <extension application="http://www.videolan.org/vlc/playlist/0">
                <vlc:id>2</vlc:id>
            </extension>
        </track>
        <track>
            <title>Track 4</title>
            <location>dvd://e:\@1</location>
            <extension application="http://www.videolan.org/vlc/playlist/0">
                <vlc:id>3</vlc:id>
                <vlc:option>my-option=100</vlc:option>
                <vlc:option>start-time=42</vlc:option>
                <vlc:option>stop-time=45</vlc:option>
                <vlc:option>no-audio</vlc:option>
            </extension>
        </track>
    </trackList>
    <extension application="http://www.videolan.org/vlc/playlist/0">
        <vlc:node title="Node 1">
            <vlc:item tid="0" />
            <vlc:item tid="1" />
            <vlc:node title="Node 2">
                <vlc:item tid="2" />
                <vlc:item tid="3" />
            </vlc:node>
        </vlc:node>
    </extension>
</playlist>
 

This playlist example will be displayed as:

Playlist
`- Node 1
   |- Track 1
   |- Track 2
   `- Node 2
      |- Track 3
      `- Track 4

The input for Track 4 will be created with the option my-option set to 42.

See also

There are many advantages to using XML as the format.More information is available at

Unsafe operations

Some operations, like setting volume, setting sout destination, etc. are deemed "unsafe" to be in the playlist, so you'll have to add those settings to the command line instead.You'll get the error message: unsafe option "sout-audio" has been ignored for security reasons) or the like.

http://forum.videolan.org/viewtopic.php?f=14&t=78945

文章来源: blog.csdn.net,作者:悟空胆好小,版权归原作者所有,如需转载,请联系作者。

原文链接:blog.csdn.net/xushx_bigbear/article/details/40506441

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

作者其他文章

评论(0

抱歉,系统识别当前为高风险访问,暂不支持该操作

    全部回复

    上滑加载中

    设置昵称

    在此一键设置昵称,即可参与社区互动!

    *长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

    *长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。