hi, i'm a new, i want to know how to record a stream into file? i use ActiveX Plugin and write follow delphi code:
VLCPlugin1 := TVLCPlugin2.Create(Self);
VLCPlugin1.Parent := Self; // Means: Place the VLC-Player into Form1
VLCPlugin1.Width := 400;
VLCPlugin1.Height := 300;
VLCPlugin1.Top := 50;
VLCPlugin1.Left := 50;
VLCPlugin1.Show;
VLCPlugin1.playlist.add(uri, '', 'sout=#duplicate{dst=display,dst=std{access=file,dst=c:/u.ts}}');
VLCPlugin1.playlist.play;
but it's not work, how can i do?