Trouble with TVLCPlugin2
Posted: 30 Sep 2016 22:45
I'm trying to add the ActiveX plugin to a project in RAD Studio (C++). I added the ActiveX component with no trouble and can place an instance of TVNCPLugin2 on my form and named it VLCPLugin.
I threw some quick code together to try and stream an RTSP stream to the player on my form....
On the line assigning the BaseURL, I get an exception "member not found".
The IDE recognizes the BaseURL member and compiles fine. Is this the wrong way to assign a stream URL to the player and play it?
Thanks!
I threw some quick code together to try and stream an RTSP stream to the player on my form....
Code: Select all
VLCPlugin->Enabled = true;
VLCPlugin->Show();
VLCPlugin->BaseURL = "rtsp://10.61.197.119";
FormJoyVIEW->VLCPlugin->playlist->play();
The IDE recognizes the BaseURL member and compiles fine. Is this the wrong way to assign a stream URL to the player and play it?
Thanks!