xspf playlist and VLC-Options
Posted: 19 Jan 2012 12:44
Hi,
I tried to create a xspf-playlist to playdifferent videosin a queue. Some of the videos I want to transform for better view ( rotate und brightness)
But teh Options are not executet (from the playlist). I tried to use the options from the commadn-line - that works fine.
Here is the example form my playlist
I tried to create a xspf-playlist to playdifferent videosin a queue. Some of the videos I want to transform for better view ( rotate und brightness)
But teh Options are not executet (from the playlist). I tried to use the options from the commadn-line - that works fine.
Here is the example form my playlist
Code: Select all
<?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>Nummer 1</title>
<location>d:\filme\w_01.mpg</location>
<extension application="http://www.videolan.org/vlc/playlist/0">
<vlc:id>3</vlc:id>
<vlc:option>vout-filter=transform</vlc:option>
<vlc:option>transform-type=270</vlc:option>
<vlc:option>start-time=0</vlc:option>
<vlc:option>stop-time=45</vlc:option>
<vlc:option>no-audio</vlc:option>
</extension>
</track>
</trackList>
</playlist>