Reputation: 3626
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: 2066
Reputation: 10095
if MediaPlayer1.Media <> nil then
begin
MediaPlayer1.Play;
end;
C:\earth.avi
to the location of your avi fileResult:
Upvotes: 7