C#没有提供播放MP3等音频文件的类,要编写播放MP3等音频文件程序,必须使用第三方控件或类。本文使用API函数mciSendString,编写一个播放MP3等音频文件的类。具体源码如下:
一、使用API函数mciSendString构成的媒体播放类。
using System;
using System.Runtime.InteropServices;
using System.Text;
using System.IO ;
namespace clsMCIPlay
{
/// <summary>
/// clsMci 的摘要说明。
/// </summary>
public class clsMCI
{
public clsMCI()
{
//
// TODO: 在此处添加构造函数逻辑
//
}
//定义API函数使用的字符串变量
[MarshalAs(UnmanagedType.ByValTStr,SizeConst=260)]
private string Name = "" ;
[MarshalAs(UnmanagedType.ByValTStr,SizeConst=128)]
private string durLength = "" ;
[MarshalAs(UnmanagedType.LPTStr,SizeConst=128)]
private string TemStr ="";
int ilong;
//定义播放状态枚举变量
public enum State
{
mPlaying = 1,
mPuase = 2,
mStop = 3
};
//结构变量
public struct structMCI
{
public bool bMut;
public int iDur;
public int iPos;
public int iVol;
public int iBal;
public string iName;
public State state;
};
public structMCI mc =new structMCI() ;
//取得播放文件属性
public string FileName
{
get
{
return mc.iName;
}
set
{
//ASCIIEncoding asc = new ASCIIEncoding();
try
{
TemStr ="";
TemStr = TemStr.PadLeft(127,Convert.ToChar(" "));
Name = Name.PadLeft(260,Convert.ToChar(" ")) ;
mc.iName = value;
ilong = APIClass.GetShortPathName(mc.iName,Name, Name.Length);
Name = GetCurrPath(Name);
//Name = "open " + Convert.ToChar(34) + Name + Convert.ToChar(34) + " alias media";
Name = "open " + Convert.ToChar(34) + Name + Convert.ToChar(34) + " alias media";
ilong = APIClass.mciSendString("close all", TemStr, TemStr.Length , 0);
ilong = APIClass.mciSendString( Name, TemStr, TemStr.Length, 0);
ilong = APIClass.mciSendString("set media time format milliseconds", TemStr, TemStr.Length , 0);
mc.state = State.mStop;
}
catch
{
MessageBox.Show("出错错误!");
}
}
}
//播放
public void play()
{
TemStr = "";
TemStr = TemStr.PadLeft(127,Convert.ToChar(" "));
APIClass.mciSendString("play media", TemStr, TemStr.Length , 0);
mc.state = State.mPlaying ;
}
//停止
public void StopT()
{
TemStr = "";
TemStr = TemStr.PadLeft(128,Convert.ToChar(" "));
ilong = APIClass.mciSendString("close media", TemStr, 128, 0);
ilong = APIClass.mciSendString("close all", TemStr, 128, 0);
mc.state = State.mStop ;
}
public void Puase()
{
TemStr = "";
TemStr = TemStr.PadLeft(128,Convert.ToChar(" "));
ilong = APIClass.mciSendString("pause media", TemStr, TemStr.Length, 0);
mc.state = State.mPuase ;
}
private string GetCurrPath(string name)
{
if(name.Length <1) return "";
name = name.Trim();
name = name.Substring(0,name.Length-1);
return name;
}
//总时间
public int Duration
{
get
{
durLength = "";
durLength = durLength.PadLeft(128,Convert.ToChar(" ")) ;
APIClass.mciSendString("status media length", durLength, durLength.Length, 0);
durLength = durLength.Trim();
if(durLength == "") return 0;
return (int)(Convert.ToDouble(durLength) / 1000f);
}
}
//当前时间
public int CurrentPosition
{
get
{
durLength = "";
durLength = durLength.PadLeft(128,Convert.ToChar(" ")) ;
APIClass.mciSendString("status media position", durLength, durLength.Length, 0);
mc.iPos = (int)(Convert.ToDouble(durLength) / 1000f);
return mc.iPos;
}
}
}
public class APIClass
{
[DllImport("kernel32.dll", CharSet = CharSet.Auto)]
public static extern int GetShortPathName (
string lpszLongPath,
string shortFile,
int cchBuffer
);
[DllImport("winmm.dll", EntryPoint="mciSendString", CharSet = CharSet.Auto)]
public static extern int mciSendString (
string lpstrCommand,
string lpstrReturnString,
int uReturnLength,
int hwndCallback
);
}
}
二、用于测试媒体播放类的简单代码:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Runtime.InteropServices;
using System.Text;
using System.IO ;
using clsMCIPlay;
namespace MCIPlay
{
/// <summary>
/// Form1 的摘要说明。
/// </summary>
public class Form1 : System.Windows.Forms.Form
{
private System.ComponentModel.IContainer components;
private System.Windows.Forms.Timer timer1;
private System.Windows.Forms.Button Play;
private System.Windows.Forms.Button Stop;
private System.Windows.Forms.Button Puase;
private System.Windows.Forms.Label PlayFileName;
private System.Windows.Forms.Label Duration;
private System.Windows.Forms.Label CurrentPosition;
private System.Windows.Forms.OpenFileDialog openFileDialog1;
private System.Windows.Forms.Button BrowserFile;
clsMCI mp = new clsMCI();
public Form1()
{
//
// Windows 窗体设计器支持所必需的
//
InitializeComponent();
//
// TODO: 在 InitializeComponent 调用后添加任何构造函数代码
//
}
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if (components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}
#region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.Play = new System.Windows.Forms.Button();
this.PlayFileName = new System.Windows.Forms.Label();
this.Duration = new System.Windows.Forms.Label();
this.Stop = new System.Windows.Forms.Button();
this.Puase = new System.Windows.Forms.Button();
this.CurrentPosition = new System.Windows.Forms.Label();
this.timer1 = new System.Windows.Forms.Timer(this.components);
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
this.BrowserFile = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// Play
//
this.Play.Location = new System.Drawing.Point(102, 243);
this.Play.Name = "Play";
this.Play.Size = new System.Drawing.Size(78, 24);
this.Play.TabIndex = 0;
this.Play.Text = "Play";
this.Play.Click += new System.EventHandler(this.Play_Click);
//
// PlayFileName
//
this.PlayFileName.AutoSize = true;
this.PlayFileName.Location = new System.Drawing.Point(12, 15);
this.PlayFileName.Name = "PlayFileName";
this.PlayFileName.Size = new System.Drawing.Size(0, 17);
this.PlayFileName.TabIndex = 1;
//
// Duration
//
this.Duration.AutoSize = true;
this.Duration.Location = new System.Drawing.Point(15, 51);
this.Duration.Name = "Duration";
this.Duration.Size = new System.Drawing.Size(0, 17);
this.Duration.TabIndex = 2;
//
// Stop
//
this.Stop.Location = new System.Drawing.Point(282, 243);
this.Stop.Name = "Stop";
this.Stop.Size = new System.Drawing.Size(81, 24);
this.Stop.TabIndex = 3;
this.Stop.Text = "Stop";
this.Stop.Click += new System.EventHandler(this.Stop_Click);
//
// Puase
//
this.Puase.Location = new System.Drawing.Point(198, 243);
this.Puase.Name = "Puase";
this.Puase.Size = new System.Drawing.Size(72, 24);
this.Puase.TabIndex = 4;
this.Puase.Text = "Puase";
this.Puase.Click += new System.EventHandler(this.Puase_Click);
//
// CurrentPosition
//
this.CurrentPosition.AutoSize = true;
this.CurrentPosition.Location = new System.Drawing.Point(15, 87);
this.CurrentPosition.Name = "CurrentPosition";
this.CurrentPosition.Size = new System.Drawing.Size(0, 17);
this.CurrentPosition.TabIndex = 5;
//
// timer1
//
this.timer1.Enabled = true;
this.timer1.Interval = 1000;
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
//
// BrowserFile
//
this.BrowserFile.Location = new System.Drawing.Point(312, 165);
this.BrowserFile.Name = "BrowserFile";
this.BrowserFile.Size = new System.Drawing.Size(87, 24);
this.BrowserFile.TabIndex = 6;
this.BrowserFile.Text = "SelectFile";
this.BrowserFile.Click += new System.EventHandler(this.BrowserFile_Click);
//
// Form1
//
this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
this.ClientSize = new System.Drawing.Size(433, 287);
this.Controls.Add(this.BrowserFile);
this.Controls.Add(this.CurrentPosition);
this.Controls.Add(this.Puase);
this.Controls.Add(this.Stop);
this.Controls.Add(this.Duration);
this.Controls.Add(this.PlayFileName);
this.Controls.Add(this.Play);
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);
}
#endregion
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main()
{
Application.Run(new Form1());
}
//选择MP3文件播放
private void Play_Click(object sender, System.EventArgs e)
{
try
{
mp.play();
}
catch
{
MessageBox.Show("出错错误!");
}
}
//暂停播放
private void Puase_Click(object sender, System.EventArgs e)
{
try
{
mp.Puase();
}
catch
{
MessageBox.Show("出错错误!");
}
}
//停止播放
private void Stop_Click(object sender, System.EventArgs e)
{
try
{
mp.StopT();
}
catch
{
MessageBox.Show("出错错误!");
}
}
//每秒显示一次播放进度
private void timer1_Tick(object sender, System.EventArgs e)
{
CurrentPosition.Text = mp.CurrentPosition.ToString();
}
//浏览文件
private void BrowserFile_Click(object sender, System.EventArgs e)
{
try
{
openFileDialog1.Filter = "*.mp3|*.mp3";
openFileDialog1.FileName = "";
if(openFileDialog1.ShowDialog() == DialogResult.OK)
{
mp.FileName = openFileDialog1.FileName ;
PlayFileName.Text = openFileDialog1.FileName ;
Duration.Text = mp.Duration.ToString() ;
}
}
catch
{
MessageBox.Show("出错错误!");
}
}
}
}
本程序在.net 2003 、win XP SP1下编译通过。
分享到:
相关推荐
在C#编程中,有时我们需要实现一些特殊的功能,比如通过API函数播放声音。这通常涉及到操作系统级别的交互,因为C#自身并不内置音频播放功能。在Windows操作系统中,我们可以利用Win32 API(Windows应用程序接口)来...
综上所述,开发一个C# MP3播放器不仅需要掌握C#编程基础,还需要理解音频播放原理和Windows API的使用。对于初学者,使用Windows Media Player控件是相对简单快捷的方法,而深入学习API编程则能提供更大的灵活性和...
为了能够在C#程序中使用Windows API函数,首先需要在代码文件顶部添加以下引用: ```csharp using System.Runtime.InteropServices; ``` 这个命名空间包含了用于调用非托管代码(如Windows API)的类型和成员。 #...
在C#开发环境中,标准库并未直接提供用于播放MP3等音频文件的功能类。为了实现这一功能,开发者通常需要借助第三方控件或类库。本篇文章介绍了一种利用Windows API中的`mciSendString`函数来创建一个可以播放MP3等...
在本文中,我们将深入探讨如何使用C#编程语言结合API函数`mciSendString`来创建一个简单的MP3播放器。`mciSendString`是一个Windows Multimedia Control Interface (MCI)函数,它允许应用程序控制多媒体设备,如音频...
首先,我们来看"C#中用API实现MP3等音频文件的播放类"。在C#中,可以使用Windows Media Player控件来播放音频文件,但这限制了功能的定制性。为了更灵活地控制音频播放,开发者可以借助Windows API中的waveOutWrite...
在本文中,我们将深入探讨如何使用C#编程语言和Windows API来实现切换系统默认音频设备的功能。这个功能在多媒体应用、在线会议软件或者游戏开发中非常常见,它允许用户快速改变声音输出源,以适应不同的使用场景。 ...
本文将深入探讨如何使用C#来控制指定的系统音频输出设备播放音乐以及调整音量大小,同时也会涉及调用Windows API中的winmm.dll库来实现这些功能。 首先,我们要理解C#如何与系统音频硬件进行交互。在.NET Framework...
本篇文章将详细探讨如何使用C#和DirectSound库来实现PCM音频流的保存,并将其转化为WAV格式的文件。 首先,我们要理解什么是PCM(Pulse Code Modulation)音频。PCM是数字音频的一种基本编码方式,它通过采样、量化...
在本文中,我们将深入探讨如何使用C#编程语言和DirectShow库来创建一个MP3音频与图片相结合的电子视频相册应用。DirectShow是Microsoft提供的一套多媒体处理框架,用于处理视频和音频流,它提供了丰富的API接口,...
在C#中,我们通常需要使用P/Invoke(平台调用)技术来调用这些非托管的Win32 API函数。 2. **P/Invoke**:C#是一种托管语言,不直接支持调用非托管的Win32 API。P/Invoke提供了一种机制,让C#代码可以引用和调用...
根据提供的信息,我们可以总结出以下有关使用C#播放音频文件的知识点: ### 一、C#播放音频文件的两种方法 #### 1. 使用MCI(Multimedia Control Interface)进行播放 - **背景介绍**:MCI是Windows操作系统提供的...
在本文中,我们将深入探讨如何使用C#编程语言在Windows Forms环境下实现...这个程序演示了如何结合使用NAudio库和Windows API来实现麦克风混音录制以及将录音保存为MP3文件的功能,是学习C#音频处理的一个实用案例。
在开发过程中,通常会结合C++、C#等高级语言来调用Win32API函数,因为这些语言提供了封装好的类和方法,使得调用API更加方便且易于理解。同时,使用API时要注意遵循Windows编程规范,避免内存泄漏和资源未释放等问题...
在Windows操作系统中,开发者可以利用Windows API(应用程序接口)来实现对硬件设备的直接操作,包括音频的采集和播放。本教程将详细讲解如何利用Windows API来采集麦克风输入的PCM(脉冲编码调制)音频数据,并进行...
1. **API基础知识**:API是Application Programming Interface的缩写,它是一组预定义的函数、类、对象和协议,开发者可以使用这些接口来构建软件应用。C#音乐播放器API提供了与音乐播放相关的各种功能,使得开发者...
需要注意的是,这种方法适用于.mp3等非.wav格式的音频文件,且需要处理播放状态,防止程序提前退出。 ### 总结 在C#中播放声音文件主要依赖于`System.Media.SoundPlayer`类或Windows多媒体API。`SoundPlayer`适合...
C# API 播放器源码是一种基于C#编程语言开发的音频播放软件,它集成了API接口,使得开发者可以方便地控制播放、暂停、停止等操作,并且支持播放网上资源和本地音乐。这样的软件在开发多媒体应用、音乐平台或者需要...
总的来说,通过分析这个C# MP3播放器的源码,我们可以学习到如何利用C#进行多媒体应用开发,包括音频文件的处理、用户界面设计、事件驱动编程、以及与操作系统API的交互等。这对于想深入学习C#和多媒体编程的开发者...
在C#中,由于.NET Framework在WINCE上的实现可能不完整,因此无法直接使用.NET的SoundPlayer类来播放音频,而是需要通过调用Win32 API函数来实现。 1. **API调用**: 在C#中,你可以使用`DllImport`特性来导入Win...