中国IT动力,最新最全的IT技术教程
最新100篇 | 推荐100篇 | 专题100篇 | 排行榜 | 搜索 | 在线API文档 | 网通镜像
首 页 | 程序开发 | 操作系统 | 软件应用 | 图形图象 | 网络应用 | 精文荟萃 | 教育认证 | 硬件维护 | 未整理篇 | 站长教程
ASP JS PHP工程 ASP.NET 网站建设 UML J2EESUN .NET VC VB VFP 网络维护 数据库 DB2 SQL2000 Oracle Mysql
服务器 Win2000 Office C DreamWeaver FireWorks Flash PhotoShop 上网宝典 CorelDraw 协议大全 网络安全 微软认证
硬件维护  CPU  主板  硬盘  内存  显卡  显示器  键盘鼠标  声卡音箱  打印机  机箱电源  BIOS  网卡  C#  Java  Delphi  vs.net2005
  当前位置:> 程序开发 > 编程语言 > .NET > 临时文章
C#获取WAVE文件文件头信息
作者:未知 时间:2005-07-27 21:31 出处:CSDN 责编:chinaitpower
              摘要:C#获取WAVE文件文件头信息

C#获取WAVE文件文件头信息

 

前些日子在论坛里问了,没人回答,今天有空自己写了一下

文件格式依据网站

http://www.moon-soft.com/program/FORMAT/

 

using System;

using System.IO;

using System.Text;

 

namespace WAV

{

    /// <summary>

    /// Summary description for Wav.

    /// </summary>

    public class Wav

    {

        public Wav()

        {

            //

            // TODO: Add constructor logic here

            //

        }

 

        [STAThread]

        static void Main(string[] args)

        {

            //

            // TODO: Add code to start application here

            //

            string strpath=@"C:\Documents and Settings\Administrator\桌面\trojan\怀念战友.wav";//=@"F:\Music";

            if(args.Length>0)

            {

                strpath=args[0].Trim();

            }

            if(File.Exists(strpath))

            {

                GetWavInfo(strpath);

                Console.WriteLine("GetWavInfo Successfully!");

                //Console.WriteLine("");

            }

            else

            {

                Console.Write("Please Enter the write filepath!\n");

                Console.Write("用法: WAV [Full Path Of Your WAV filepath]");

            }

        }

 

        public struct WavInfo

        {

            public string groupid;

            public string rifftype;

            public long filesize;

            public string chunkid;

            public long chunksize;

 

            public short wformattag; //记录着此声音的格式代号,例如WAVE_FORMAT_PCMWAVE_F0RAM_ADPCM等等。

            public ushort wchannels; //记录声音的频道数。

            public ulong  dwsamplespersec;//记录每秒取样数。

            public ulong  dwavgbytespersec;//记录每秒的数据量。

            public ushort wblockalign;//记录区块的对齐单位。

            public ushort wbitspersample;//记录每个取样所需的位元数。

 

            public string datachunkid;

            public long datasize;

 

        }

 

        public static void GetWavInfo(string strpath)

        {

            WavInfo wavInfo = new WavInfo();

            FileInfo fi = new FileInfo(strpath);

            System.IO.FileStream fs=fi.OpenRead();

            if(fs.Length>=44)

            {

                byte[] bInfo=new byte[44];

                fs.Read(bInfo,0,44);

               

                System.Text.Encoding.Default.GetString(bInfo,0,4);

                if(System.Text.Encoding.Default.GetString(bInfo,0,4)=="RIFF"&&System.Text.Encoding.Default.GetString(bInfo,8,4)=="WAVE"&&System.Text.Encoding.Default.GetString(bInfo,12,4)=="fmt ")

                {

                    wavInfo.groupid = System.Text.Encoding.Default.GetString(bInfo,0,4);

                    System.BitConverter.ToInt32(bInfo,4);

                    wavInfo.filesize = System.BitConverter.ToInt32(bInfo,4);

                       

                    //wavInfo.filesize = Convert.ToInt64(System.Text.Encoding.Default.GetString(bInfo,4,4));

                    wavInfo.rifftype = System.Text.Encoding.Default.GetString(bInfo,8,4);

                    wavInfo.chunkid = System.Text.Encoding.Default.GetString(bInfo,12,4);

                    wavInfo.chunksize = System.BitConverter.ToInt32(bInfo,16);

                    wavInfo.wformattag = System.BitConverter.ToInt16(bInfo,20);

                    wavInfo.wchannels = System.BitConverter.ToUInt16(bInfo,22);

                    wavInfo.dwsamplespersec = System.BitConverter.ToUInt32(bInfo,24);

                    wavInfo.dwavgbytespersec = System.BitConverter.ToUInt32(bInfo,28);

                    wavInfo.wblockalign = System.BitConverter.ToUInt16(bInfo,32);

                    wavInfo.wbitspersample = System.BitConverter.ToUInt16(bInfo,34);

                    wavInfo.datachunkid = System.Text.Encoding.Default.GetString(bInfo,36,4);

                    wavInfo.datasize = System.BitConverter.ToInt32(bInfo,40);

 

                    System.Console.WriteLine("groupid:"+wavInfo.groupid);

                    System.Console.WriteLine("filesize:"+wavInfo.filesize);

                    System.Console.WriteLine("rifftype:"+wavInfo.rifftype);

                    System.Console.WriteLine("chunkid:"+wavInfo.chunkid);

                    System.Console.WriteLine("chunksize:"+wavInfo.chunksize);

                    System.Console.WriteLine("wformattag:"+wavInfo.wformattag);

                    System.Console.WriteLine("wchannels:"+wavInfo.wchannels);

                    System.Console.WriteLine("dwsamplespersec:"+wavInfo.dwsamplespersec);

                    System.Console.WriteLine("dwavgbytespersec:"+wavInfo.dwavgbytespersec);

                    System.Console.WriteLine("wblockalign:"+wavInfo.wblockalign);

                    System.Console.WriteLine("wbitspersample:"+wavInfo.wbitspersample);

                    System.Console.WriteLine("datachunkid:"+wavInfo.datachunkid);

                    System.Console.WriteLine("datasize:"+wavInfo.datasize);

 

                }

            }

        }

    }

}

 


关闭本页
 
首页 | 投资与合作 | 服务条款 | 隐私政策 | 收藏本站 | 设为首页 | 新用户注册 | 免责声明 | 使用帮助
Copyright ©2005-2008 chinaitpower.com All rights reserved. www.chinaitpower.com 版权所有