2009-06-23, 04:33
A recent hobby project to create a TV broadcast type playlist.
Objective: To play random episodes, movies, and music videos, just like if you were channel surfing using your TV remote.
I used the Smart Playlist function in XBMC to create a TV episodes random smart playlist (I had to edit the code slightly to remove the ordering = ascending/descending assignment so that episodes were completely random):
To use it, I open the context menu while selecting the playlist and simply choose to play it in party mode.
It works quite well - a very random assortment of shows.... and if I don't want to watch a particular show, I just skip forward to the next show. Alas you can only watch so much "TV" right
I'd like to expand on the smart playlist by adding random movies and music videos to the mix, but I'm lost as to what the <smartplaylist type=??> should be?
Anyone know if there is anyway to create a multi-video mixed smartplaylist?
Objective: To play random episodes, movies, and music videos, just like if you were channel surfing using your TV remote.
I used the Smart Playlist function in XBMC to create a TV episodes random smart playlist (I had to edit the code slightly to remove the ordering = ascending/descending assignment so that episodes were completely random):
Code:
<smartplaylist type="episodes">
<name>Random TV</name>
<match>all</match>
<rule field="none" operator="contains"></rule>
<limit>25</limit>
<order>random</order>
</smartplaylist>
To use it, I open the context menu while selecting the playlist and simply choose to play it in party mode.
It works quite well - a very random assortment of shows.... and if I don't want to watch a particular show, I just skip forward to the next show. Alas you can only watch so much "TV" right
I'd like to expand on the smart playlist by adding random movies and music videos to the mix, but I'm lost as to what the <smartplaylist type=??> should be?
Anyone know if there is anyway to create a multi-video mixed smartplaylist?