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的长度,同样一个文件,为什么得到同样的值呢?
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的长度,同样一个文件,为什么得到同样的值呢?