ActiveX Plugin - how to set the video options?
Posted: 06 Jul 2006 14:46
Hello,
i read every activex plugin thread but failed to set the video options using Delphi 7 Enterprise Edition.
Playback without any options works fine.
After setting an option, the application crashes with an EOle Exception - wrong parameter.
Which parameters are supported? And what a syntax is required? Has the option to start with - or : ?
Seems that many people have the same problems, was somebody successful in setting a video option? maybe with another programming language?
DOOM
i read every activex plugin thread but failed to set the video options using Delphi 7 Enterprise Edition.
Playback without any options works fine.
Code: Select all
procedure TForm1.Button1Click(Sender: TObject);
begin
VLCPlugin1.addTarget('C:\lost.avi',null, VLCPlayListInsert, 0);
VLCPlugin1.play;
end;
Which parameters are supported? And what a syntax is required? Has the option to start with - or : ?
Seems that many people have the same problems, was somebody successful in setting a video option? maybe with another programming language?
DOOM