人人做人人澡人人爽欧美,国产主播一区二区,久久久精品五月天,羞羞视频在线观看免费

當(dāng)前位置:蘿卜系統(tǒng)下載站 > 技術(shù)開(kāi)發(fā)教程 > 詳細(xì)頁(yè)面

C#取得WAVE文件文件頭信息

C#取得WAVE文件文件頭信息

更新時(shí)間:2022-09-10 文章作者:未知 信息來(lái)源:網(wǎng)絡(luò) 閱讀次數(shù):

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\懷念戰(zhàn)友.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; //記錄著此聲音的格式代號(hào),例如WAVE_FORMAT_PCM,WAVE_F0RAM_ADPCM等等。

            public ushort wchannels; //記錄聲音的頻道數(shù)。

            public ulong  dwsamplespersec;//記錄每秒取樣數(shù)。

            public ulong  dwavgbytespersec;//記錄每秒的數(shù)據(jù)量。

            public ushort wblockalign;//記錄區(qū)塊的對(duì)齊單位。

            public ushort wbitspersample;//記錄每個(gè)取樣所需的位元數(shù)。



            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);



                }

            }

        }

    }

}

溫馨提示:喜歡本站的話,請(qǐng)收藏一下本站!

本類教程下載

系統(tǒng)下載排行

網(wǎng)站地圖xml | 網(wǎng)站地圖html
主站蜘蛛池模板: 忻城县| 勐海县| 四川省| 隆尧县| 伊金霍洛旗| 乌拉特中旗| 溧阳市| 安图县| 咸宁市| 山东省| 乌拉特前旗| 桃江县| 班戈县| 资溪县| 石柱| 平舆县| SHOW| 高州市| 沂南县| 黄骅市| 连城县| 左贡县| 区。| 大田县| 江北区| 黑河市| 分宜县| 上栗县| 井冈山市| 安福县| 逊克县| 元江| 宕昌县| 惠水县| 双桥区| 中阳县| 油尖旺区| 若羌县| 临湘市| 微山县| 曲周县|