I am trying to use ActiveX + Delphi to create a Video Streaming Server.
I would like to display the video inside a Delphi Form and send it to a UNICAST address.
The code below does not accept more than 1 parameter:
VLCPlugin1.addTarget(
// does not work !
//'F:\Cinema\mpg\vcdfastaction.mpeg --sout "#duplicate{dst=display,dst=std{access=udp,mux=ts,url=localhost:1234}}"',
// works !
'F:\Cinema\mpg\vcdfastaction.mpeg',
null,
VLCPlayListInsert,
0);
VLCPlugin1.play;
Im I doing any mistake in specifing the command ?
Thanks