詳解C#winform迴圈播放多個視頻的程式碼範例

來源:互聯網
上載者:User
這篇文章主要為大家詳細介紹了C# winform迴圈播放多個視頻的相關資料,具有一定的參考價值,感興趣的小夥伴們可以參考一下

本文執行個體為大家分享了winform迴圈播放多個視頻的具體代碼,供大家參考,具體內容如下

環境: vs2015 +winform

首先,vsOOB 元件很方便,所以,用windowMediaplayer組件,如果做單曲迴圈播放的話,加個屬性:


axWindowsMediaPlayer1.settings.autoStart = true;      //設定自動播放axWindowsMediaPlayer1.settings.setMode("loop", true);   //設定迴圈播放

言歸正傳:

一:拖入組件button ,windowMediaplayer,listbox,timer

二:


 List<string> fileList = new List<string>();       private void button1_Click(object sender, EventArgs e)    {      fileList.Add(@"E:\\QLDownload\nba\\Action2.mp4");      fileList.Add(@"E:\\QLDownload\nba\\Action3.mp4");      fileList.Add(@"E:\\QLDownload\nba\\Action4.mp4");      fileList.Add(@"E:\\QLDownload\nba\\Action5.mp4");      for (int i = 0; i < fileList .Count ; i++)      {        listBox1.Items.Add(fileList [i]);      }      //預設選擇第一項      this.listBox1.SelectedIndex = 0;      axWindowsMediaPlayer1 .URL = fileList [listBox1.SelectedIndex];      axWindowsMediaPlayer1 .Ctlcontrols.play();    } private void timer1_Tick(object sender, EventArgs e)    {      if (axWindowsMediaPlayer1 .playState == WMPLib.WMPPlayState.wmppsPlaying)      {        double d1 = Convert.ToDouble(axWindowsMediaPlayer1 .currentMedia.duration.ToString());        double d2 = Convert.ToDouble(axWindowsMediaPlayer1 .Ctlcontrols.currentPosition.ToString()) + 1;        if (d1 <= d2)        {          nextMusic(listBox1.SelectedIndex);        }      }     } private void Form1_Load(object sender, EventArgs e)    {      axWindowsMediaPlayer1 .settings.autoStart = false ;        }void nextMusic(int index)    {      //listBox1.SelectedIndices.Clear();      index++;      if (index == listBox1.Items.Count)      {        index = 0;      }      axWindowsMediaPlayer1 .URL = fileList [index];      listBox1.SelectedIndex = index;      axWindowsMediaPlayer1 .Ctlcontrols.play();    }

提醒: 注意各個組件的自身屬性,運行不了,及時調屬性, .

由於需求原因,不讓選擇檔案,所以在代碼裡,預設添加的, 並把listbox隱藏了.

問題: 下面就要解決路徑問題了.如果打包,必須弄成項目路徑或者網路路徑, 視頻檔案並不支援內建資源.

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.