Party Mode: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
No edit summary
Line 1: Line 1:
#REDIRECT [[Smart playlists#Party Mode playlists]]
{{mininav| [[Playlists]] }}
 
{{Frodo note|This will need to be updated for XBMC v12}}<br />
The Party Mode [[Music Library#Party Mode|music]] and [[Video Library#Party Mode|music video]] playlists are the only predefined playlists in XBMC. They can be further configured via the partymode.xsp and partymode-video.xsp files in the [[userdata folder]]. The Party Mode playlists are smart playlists and can be configured as seen below:
 
For more information on configuring smart playlists, see '''[[Smart playlists]]'''.
 
;Example
<syntaxhighlight lang="xml" enclose="div">
<xml>
<smartplaylist type="music">
    <name>Party Mode</name>
    <match>all</match>
    <rule field="genre" operator="contains">Rock</rule>
    <rule field="artist" operator="is">U2</rule>
    <rule field="year" operator="lessthan">1985</rule>
</smartplaylist>
</xml>
</syntaxhighlight>

Revision as of 20:14, 7 December 2014

Home icon grey.png   ▶ Playlists ▶ Party Mode

Template:Frodo note
The Party Mode music and music video playlists are the only predefined playlists in XBMC. They can be further configured via the partymode.xsp and partymode-video.xsp files in the userdata folder. The Party Mode playlists are smart playlists and can be configured as seen below:

For more information on configuring smart playlists, see Smart playlists.

Example
<xml>
<smartplaylist type="music">
    <name>Party Mode</name>
    <match>all</match>
    <rule field="genre" operator="contains">Rock</rule>
    <rule field="artist" operator="is">U2</rule>
    <rule field="year" operator="lessthan">1985</rule>
</smartplaylist>
</xml>