Hallo,
ich habe das VLC-plugin erfolgreich meine Oberfläche eingebunden und kann
dort auch Video's abspielen.
Nun möchte ich ein Livebild einer Kamera anzeigen lassen und ich hab keine
Idee wie ich das 'capture device' öffnen kann.
Hier der Quellcode mit einem Video:
.......
procedure TFPyrom.CAM_ON(SWON: BOOLEAN);
begin
try
VLCPlugin1 := TVLCPlugin.Create(Self);
VLCPlugin1.Parent := Self;
VLCPlugin1.Width := 600;
VLCPlugin1.Height := 450;
VLCPlugin1.Top := 180;
VLCPlugin1.Left := 100;
VLCPlugin1.Show;
VLCPlugin1.addTarget('C:\test.mpg', null, VLCPlayListInsert, 0);
VLCPlugin1.play;
except
on e:
Exception do
begin
ShowException(e, nil);
raise;
end;
end;
end;
end.