I have no idea how to interpret the following:
vlc.playlist.add(mrl): add a playlist item as MRL. The MRL must be given as a string. Returns a number as an item identifier in playlist (this is not a position in playlist).
vlc.playlist.add(mrl,name,options): add a playlist item as MRL, with metaname 'name' and options 'options'. options are text arguments which can be provided either as a single string containing space separated values, akin to VLC command line, or as an array of string values. Returns a number as an item identifier in playlist (this is not a position in playlist).
Code: Select all
<script type="text/javascript">
var options = new Array(
":aspect-ratio=4:3", "--rtsp-tcp");
var id = vlc.playlist.add("rtsp://servername/item/to/play", "fancy name", options);
vlc.playlist.playItem(id);
</script>
I added .xspf file (containing 3 .mp4 videos) to same folder.
I don't know to create RTSP file on my Apace server.
After inserting all of code from https://wiki.videolan.org/Documentation ... ems_object into Dreamweaver, the only thing that shows up is Audio Channel with Drop-Down List in Explorer 10.
Also, is there some plugin I must download and what is its name and where is it at?
Thanks in Advance,
Lucien