Reputation: 605
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
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