请教:用mediaplayer查wma的长度,timeformat设为tfmsf,tfframes,tfmilliseconds后,为什么得到的值都是一样的?(

  • 主题发起人 主题发起人 lkdbdlkq
  • 开始时间 开始时间
L

lkdbdlkq

Unregistered / Unconfirmed
GUEST, unregistred user!
请教:用mediaplayer查wma的长度,timeformat设为tfmsf,tfframes,tfmilliseconds后,为什么得到的值都是一样的?(5分)<br />mp.TimeFormat:=tfMilliseconds;
mp.FileName:='c:/001.wma';
mp.Open;
showmessage(inttostr(mp.Length));

mp.TimeFormat:=tfMSF;
showmessage(inttostr(mp.Length));

mp.TimeFormat:=tfFrames;
showmessage(inttostr(mp.Length));

我用上述代码查001.wma的长度,同样一个文件,为什么得到同样的值呢?
 

Similar threads

S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
D
回复
0
查看
1K
DelphiTeacher的专栏
D
D
回复
0
查看
1K
DelphiTeacher的专栏
D
后退
顶部