Playing remote audio file with TMediaPlayer - Object Pascal

667 views Asked by At

I just started using Appmethod and I can't seem to figure out how to play a remote audio file using the audio player example they give.

This is what I have tried:

procedure TAudioPlayBackForm.btnPlayClick(Sender: TObject);
begin
  MediaPlayer1.FileName := 'URL HERE';
  MediaPlayer1.Play;
end;
0

There are 0 answers