用TMediaPlayer的問題 |
尚未結案
|
SuperLowB
初階會員 發表:96 回覆:77 積分:34 註冊:2003-06-11 發送簡訊給我 |
請問如果用TMediaPlayer,如何拿取*.wav或*.mp3檔的總時間
我試過按照help裏做,但都做不到 ==== Delphi help ====
type HMSRec = record Hours: byte; Minutes: byte; Seconds: byte; NotUsed: byte; end; procedure TForm1.Button1Click(Sender: TObject); var TheLength: LongInt; begin { Set time format - note that some devices dont support tfHMS } MediaPlayer1.TimeFormat := tfHMS; { Store length of currently loaded media } TheLength := MediaPlayer1.Length; with HMSRec(TheLength) do { Typecast TheLength as a HMSRec record } begin Label1.Caption := IntToStr(Hours); { Display Hours in Label1 } Label2.Caption := IntToStr(Minutes); { Display Minutes in Label2 } Label3.Caption := IntToStr(Seconds); { Display Seconds in Label3 } end; end; |
hagar
版主 發表:143 回覆:4056 積分:4445 註冊:2002-04-14 發送簡訊給我 |
本站聲明 |
1. 本論壇為無營利行為之開放平台,所有文章都是由網友自行張貼,如牽涉到法律糾紛一切與本站無關。 2. 假如網友發表之內容涉及侵權,而損及您的利益,請立即通知版主刪除。 3. 請勿批評中華民國元首及政府或批評各政黨,是藍是綠本站無權干涉,但這裡不是政治性論壇! |