TMediaPlayer Borland Programming Software Development by hermann87 Hello, I'm currently using the TMediaPlayer component from Borland to play a .mid file in one … TMediaPlayer play through one - record by an other Programming Software Development by AKJo Using TMediaPlayer to play parts of .wav files. I would like to … Play MP4 files with TMediaPlayer in D2007 Programming Software Development by AKJo Hi, I have developed a program in Delphy 2007, which shows .AVI files. Now I want to run MP4 files as well, but cannot achieve it. TMediaPlayer does not recognize the format by its extension. Is there an other player available or an upgrade for the one that came with my D2007? Re: Play MP4 files with TMediaPlayer in D2007 Programming Software Development by Duoas The TMediaPlayer component should be able to play with any codec installed on your computer. Can you play the file normally using Windows Media Player from Explorer? Re: MP3 Player in Delphi 7 Programming Software Development by Michaël …type TForm1 = class(TForm) Image1: TImage; MP1: TMediaPlayer; XPManifest1: TXPManifest; OD1: TOpenDialog; Timer1: TTimer;… procedure FormClick(Sender: TObject); procedure TMediaPlayer.Play; procedure TMediaPlayer.Pause; private procedure StartPlay(Sender : … Re: Two strings will not combine Programming Software Development by Carson89 …: TMenuItem; Help_Main: TMenuItem; About_Help: TMenuItem; Break2_File: TMenuItem; Options_File: TMenuItem; Player_MediaPlayer: TMediaPlayer; Playlist_Label: TLabel; OpenMedia_OpenDialog: TOpenDialog; MediaList_ListView: TListView; Main_StatusBar: TStatusBar; MediaProgress_ProgressBar: TProgressBar… Re: Control sound level for MediaPlayer Programming Software Development by Wolfgan … DWORD; dwItem: DWORD; dwTrack: DWORD; end; procedure SetMPVolume(MP: TMediaPlayer; Volume: Integer); { Volume: 0 - 1000 } var p: MCI_DGV_SETAUDIO_PARMS… or MCI_DGV_SETAUDIO_ITEM, Cardinal(@p)); end; function GetMPVolume(MP: TMediaPlayer): Integer; var p: MCI_STATUS_PARMS; begin p.dwCallback := 0… Re: adding video in delphi program Programming Software Development by Micheus You can use [I]TMediaPlayer[/I] component. Take a look on this Abolut.com [URL="http://delphi.about.com/library/bluc/ucappsmultimedia.htm"]page[/URL] and download the sample [I]Media Walker[/I]. Bye Re: In Delphi, How do I Loop a sound smoothly? Programming Software Development by fayyaz … sound at Time you can play another sound by [B]TMediaplayer[/B] in System tab of Delphi Re: MP3 Player in Delphi 7 Programming Software Development by SalmiSoft … TSomeObject.SomeMethod(Sender : TObject); MP1.Play is defined as: `procedure TMediaPlayer.Play;` As you can see it has no Sender parameter… Re: MP3 Player in Delphi 7 Programming Software Development by SalmiSoft … anyway. One trivial issue with this code is that the TMediaPlayer already keeps track of what it is doing so you… Re: Play MP4 files with TMediaPlayer in D2007 Programming Software Development by rubberman MP4 files require a different codec. I don't know how you would load/enable that with Delphi, but it should not be difficult.