Currently I am trying to use VLC as activeX plugin in Delphi 2007.
I already succeed streaming from RTSP and trigger snapshot, but I can't change snapshot-format into jpg file. Currently the snapshot is in .bmp format.
Bellow the coding
i:=VLCPlugin21.playlist.add(pchar('rtsp://admin:admin@192.168.1.1:80/0'),null,null);
VLCPlugin21.playlist.playItem(i);
VLCPlugin21.playlist.togglePause();
VLCPlugin21.video.takeSnapshot;
VLCPlugin21.playlist.stop;
How to access snapshot-format in VLC activeX plugin?
Any help will be appreciated...