栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > C/C++/C# > C#教程

C#定义的MP3播放类实例

C#教程 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

C#定义的MP3播放类实例

本文实例讲述了C#定义的MP3播放类。分享给大家供大家参考。具体分析如下:

这里使用C#定义一个MP3播放类,将Mp3文件作为资源文件包含到项目中,就可以播放mp3了

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.IO;
using System.Runtime.InteropServices;
namespace Mp3Tool
{
  public Class MP3Player
  {
    [Dllimport ("winmm.dll")]
    static extern Int32 mciSendString (String command,StringBuilder buffer, Int32 bufferSize, IntPtr hwndCallback);
    /// 
    /// temporary repository of music files
    /// 
    private String m_musicPath = "";
    /// 
    /// parent window handle
    /// 
    private IntPtr m_Handle;
    /// 
    /// Create Mp3 player class
    /// 
    /// embedded music file
    /// temporary music file path
    /// parent window handle
    public MP3Player (Byte [] Music, String path, IntPtr Handle)
    {
      try
      {
 m_Handle = Handle;
 m_musicPath = Path.Combine (path, "temp.mp3");
 FileStream fs = new FileStream (m_musicPath, FileMode.Create);
 fs.Write (Music, 0, music.Length);
 fs.Close ();
      }
      catch (Exception)
      {
      }
    }
    /// 
    /// Create Mp3 player class
    /// 
    /// to play the mp3 file path
    /// parent window handle
    public MP3Player(String musicPath, IntPtr Handle)
    {
      m_musicPath = musicPath;
      m_Handle = Handle;
    }
    public MP3Player(Byte [] Music, IntPtr Handle) : this(Music, @"C:Windows",Handle)
    {
    }
    public void Open (String path)
    {
      IF (path ! = "")
      {
 try
 {
   mciSendString ("Open " + path + " alias Media", null, 0, m_Handle);
   mciSendString ("play Media", null, 0, m_Handle);
 }
 catch (Exception)
 {
 }
      }
    }
    public void Open()
    {
      Open (m_musicPath);
    }
    void CloseMedia()
    {
      try
      {
 mciSendString ("Close ALL", null, 0, m_Handle);
      }
      catch (Exception)
      {
      }
    }
  }
}

调用方法:

private void Main()
{
   //load music
   MP3Player MP3 = new MP3Player (Properties.Resources.music, Handle);
  //music start playing
   mp3.Open ();
}

希望本文所述对大家的C#程序设计有所帮助。

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/125554.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号