delphi MediaPlayer循环播放MP3所有音乐文件问题?
即:在一个文件夹里装有20首MP3音乐文件,如何用MediaPlayer循环播放该文件夹里面的所有内容。...
即:在一个文件夹里装有20首MP3音乐文件,如何用MediaPlayer循环播放该文件夹里面的所有内容。
展开
2个回答
推荐于2016-08-04
展开全部
MediaPlayer用得不多, 只知道这种办法, . 假如你已有一个ListBox1并已经装载好全部MP3的完整路径信息了, 可以加一个TIMER1, 在 TIMER1的事件里写代码跟踪播放器的模式, 一停止即播放下一首歌.procedure TForm1.Timer1Timer(Sender: TObject);
begin
if MediaPlayer1.Mode=mpStopped then
begin
ListBox1.itemindex:=ListBox1.itemindex+1;
MediaPlayer1.FileName:=ListBox1.Items[ListBox1.itemindex];
MediaPlayer1.Close;
MediaPlayer1.Open;
MediaPlayer1.Play;。
begin
if MediaPlayer1.Mode=mpStopped then
begin
ListBox1.itemindex:=ListBox1.itemindex+1;
MediaPlayer1.FileName:=ListBox1.Items[ListBox1.itemindex];
MediaPlayer1.Close;
MediaPlayer1.Open;
MediaPlayer1.Play;。
2013-06-13
展开全部
MediaPlayer用得不多, 只知道这种办法, 希望能帮到你. 假如你已有一个ListBox1并已经装载好全部MP3的完整路径信息了, 可以加一个TIMER1, 在 TIMER1的事件里写代码跟踪播放器的模式, 一停止即播放下一首歌.procedure TForm1.Timer1Timer(Sender: TObject);
begin
if MediaPlayer1.Mode=mpStopped then
begin
ListBox1.itemindex:=ListBox1.itemindex+1;
MediaPlayer1.FileName:=ListBox1.Items[ListBox1.itemindex];
MediaPlayer1.Close;
MediaPlayer1.Open;
MediaPlayer1.Play;
end;
end;
begin
if MediaPlayer1.Mode=mpStopped then
begin
ListBox1.itemindex:=ListBox1.itemindex+1;
MediaPlayer1.FileName:=ListBox1.Items[ListBox1.itemindex];
MediaPlayer1.Close;
MediaPlayer1.Open;
MediaPlayer1.Play;
end;
end;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询