资源简介
使用C#实现播放wav音频,能够实现基本的播放功能,以及对wav数据波形的现实,实时生成wav波形。

代码片段和文件信息
/* ========================================================================================== */
/* FMOD Ex - C# Wrapper . Copyright (c) Firelight Technologies Pty Ltd. 2004-2008. */
/* */
/* */
/* ========================================================================================== */
using System;
using System.Text;
using System.Runtime.InteropServices;
namespace FMOD
{
/*
FMOD version number. Check this against FMOD::System::getVersion / System_GetVersion
0xaaaabbcc -> aaaa = major version number. bb = minor version number. cc = development version number.
*/
public class VERSION
{
public const int number = 0x00041803;
public const string dll = “fmodex“;
}
/*
FMOD types
*/
/*
[STRUCTURE]
[
[DEscriptION]
Structure describing a point in 3D space.
[REMARKS]
FMOD uses a left handed co-ordinate system by default.
To use a right handed co-ordinate system specify FMOD_INIT_3D_RIGHTHANDED from FMOD_INITFLAGS in System::init.
[PLATFORMS]
Win32 Win64 Linux Linux64 Macintosh Xbox Xbox360 PlayStation 2 GameCube PlayStation Portable PlayStation 3 Wii
[SEE_ALSO]
System::set3DListenerAttributes
System::get3DListenerAttributes
Channel::set3DAttributes
Channel::get3DAttributes
Geometry::addPolygon
Geometry::setPolygonVertex
Geometry::getPolygonVertex
Geometry::setRotation
Geometry::getRotation
Geometry::setPosition
Geometry::getPosition
Geometry::setScale
Geometry::getScale
FMOD_INITFLAGS
]
*/
public struct VECTOR
{
public float x; /* X co-ordinate in 3D space. */
public float y; /* Y co-ordinate in 3D space. */
public float z; /* Z co-ordinate in 3D space. */
}
/*
[STRUCTURE]
[
[DEscriptION]
Structure describing a globally unique identifier.
[REMARKS]
[PLATFORMS]
Win32 Win64 Linux Linux64 Macintosh Xbox Xbox360 PlayStation 2 GameCube PlayStation Portable PlayStation 3 Wii Solaris
[SEE_ALSO]
System::getDriverInfo
]
*/
public struct GUID
{
public uint Data1; /* Specifies the first 8 hexadecimal digits of the GUID */
public ushort Data2; /* Specifies the first group of 4 hexadecimal digits. */
public ushort Data3; /* Specifies the second group of 4 hexadecimal digits. */
[MarshalAs(UnmanagedType.ByValArraySizeConst=8)]
public char[] Data4; /* Array of 8 bytes.
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 910 2008-12-29 23:13 ZPla
文件 20224 2008-12-31 22:18 ZPla
文件 20236 2009-01-01 20:25 ZPla
文件 4647 2008-12-31 17:04 ZPla
文件 99678 2008-12-31 17:03 ZPla
文件 238397 2008-12-31 22:18 ZPla
文件 468 2008-12-30 21:59 ZPla
文件 259706 2008-12-30 22:07 ZPla
文件 34821 2008-12-30 22:07 ZPla
文件 13954 2008-12-30 22:07 ZPla
文件 25214 2008-12-30 22:48 ZPla
文件 50978 2008-12-30 22:53 ZPla
文件 99678 2008-12-30 22:53 ZPla
文件 9748 2008-12-31 11:42 ZPla
文件 99678 2008-12-31 11:43 ZPla
文件 99678 2008-12-31 11:45 ZPla
文件 99678 2008-12-31 11:45 ZPla
文件 99678 2008-12-31 11:45 ZPla
文件 99678 2008-12-31 11:56 ZPla
文件 99678 2008-12-31 12:19 ZPla
文件 99678 2008-12-31 12:20 ZPla
文件 99678 2008-12-31 12:23 ZPla
文件 99678 2008-12-31 14:41 ZPla
文件 99678 2008-12-31 14:46 ZPla
..A.SH. 23040 2009-01-01 01:19 ZPla
文件 270 2009-01-01 20:25 ZPla
文件 155379 2008-12-31 22:18 ZPla
文件 1491 2008-12-31 22:18 ZPla
文件 210432 2009-01-01 20:25 ZPla
文件 85641 2008-12-31 14:49 ZPla
............此处省略23个文件信息
- 上一篇:排队机叫号源代码
- 下一篇:类似赶集网的供求信息网
相关资源
- asp.net C#购物车源代码
- C#实时网络流量监听源码
- C#百度地图源码
- Visual C#.2010从入门到精通配套源程序
- C# 软件版本更新
- C#屏幕软键盘源码,可以自己定制界面
- 智慧城市 智能家居 C# 源代码
- c#获取mobile手机的IMEI和IMSI
- C#实现简单QQ聊天程序
- 操作系统 模拟的 欢迎下载 C#版
- C#写的计算机性能监控程序
- 用C#实现邮件发送,有点类似于outlo
- MVC model层代码生成器 C#
- c#小型图书销售系统
- C# Socket Server Client 通讯应用 完整的服
- c# winform 自动登录 百度账户 源代码
- C#编写的16进制计算器
- C#TCP通信协议
- C# 数据表(Dataset)操作 合并 查询一
- C#语音识别系统speechsdk51,SpeechSDK51L
- 数据库备份还原工具1.0 C# 源码
-
[免费]xm
lDocument 节点遍历C# - EQ2008LEDc#开发实例
- DirectX.Capturec# winform 操作摄像头录像附
- c# 实现的最大最小距离方法对鸢尾花
- C#版保龄球记分代码
- C#自定义控件
- 基于c#的实验室设备管理系统621530
- C# 使用ListView控件实现图片浏览器(源
- C#简单窗体聊天程序
评论
共有 条评论