Reputation: 3628
Can someone tell me how to play AVI files with FireMonkey? Which component should I use?
I searched in all componenets but didn't find anything useful.
Upvotes: 2
Views: 2060
Reputation: 10065
if MediaPlayer1.Media <> nil then
begin
MediaPlayer1.Play;
end;
C:\earth.avi
to the location of your avi fileResult:
Upvotes: 7