Diego Bittencourt
Diego Bittencourt

Reputation: 605

Firemonkey: How can I play a video (from youtube) in my form?

I don't want put a link to a video, I want show the video on my app. There is some way to do this? Please give me some direction.

Upvotes: 0

Views: 1889

Answers (1)

Dave Olson
Dave Olson

Reputation: 1494

You could use a TWebBrowser component:

procedure TForm1.Button1Click(Sender: TObject);

begin
   WebBrowser1.URL := 'https://www.youtube.com/watch?v=q_rTWxJepO8';
end;

Upvotes: 3

Related Questions