Page 1 of 1

Play multiple videos with axVLCPlugin21

Posted: 10 Dec 2009 16:48
by plug_caster
I'm trying to play video after video using a playlist. Single video works fine using;

Code: Select all

axVLCPlugin21.playlist.add(@"c:\movie1.mov", null, null); axVLCPlugin21.playlist.play();
but if I try

Code: Select all

axVLCPlugin21.playlist.add(@"c:\movies.xpsf", null, null); axVLCPlugin21.playlist.play();
I get nothing. I used vlc player to create xpsf playlist.

Newbie