Topic: Display a video inside a window

Hello Dmitry

I've made an application which plays vidoes chosen from a combobox.
It works very fine.

I intended to show this video in a small window that would be present on the same form when the combobox is.
Like the webbrowser I use in another application which can display a town in GoogleMaps, (here is a piece of code)

procedure Form1_Image6_OnClick (Sender: string);    //  On lance la carte
var  Web: TWebBrowser;
begin
    Web := TWebBrowser.Create(Map);
    Map.Show;
    TWinControl(Web).Parent := Map;
    Web.Width  := 800;
    Web.Height := 800;
end;

Is it possible to same thing with Mediaplayer ?

Thanks for your help

JB

Re: Display a video inside a window

Hello,


Yes, please download again beta version 2.4, I have added some features for that:
http://myvisualdatabase.com/forum/viewtopic.php?id=2179


An example of video player:

Post's attachments

Attachment icon Video Player.zip 3.39 kb, 661 downloads since 2016-02-21 

Dmitry.

Re: Display a video inside a window

Hello Dmitry

Really very very kind !
It works fine.
You're a boss.
Thanks again

JB