【C#获取音频文件的播放时间】

35 篇文章 0 订阅

       [DllImport("Kernel32", CharSet = CharSet.Auto)]
        static extern Int32 GetShortPathName(String path, StringBuilder shortPath, Int32 shortPathLength);


        [DllImport("winmm.dll")]
        public static extern int mciSendString(string m_strCmd, StringBuilder m_strReceive, int m_v1, int m_v2);
       


        private string getasfTime(string filePath)
        {
            StringBuilder shortpath = new StringBuilder(80);
            GetShortPathName(filePath, shortpath, shortpath.Capacity);
            string name = shortpath.ToString();
            StringBuilder buf = new StringBuilder(80);
            mciSendString("close all", buf, buf.Capacity, 0);
            mciSendString("open " + name + " alias media", buf, buf.Capacity, 0);
            mciSendString("status media length", buf, buf.Capacity, 0);
            TimeSpan ts = new TimeSpan(0, 0, 0, 0, (int)Convert.ToDouble(buf.ToString().Trim()));
            return ts.ToString();
        }
        private void button1_Click(object sender, EventArgs e)
        {
            this.label1.Text = getasfTime("F:\\视频\\游戏视频-贼法竞技场2v2 2200+.avi");
        }


注:该程序段能获取的音频或者视频的格式由 [DllImport("winmm.dll")]中的winmm。dll决定。当然可以导入其他dll文件来支持其他格式。但其中函数也随之变化。














添加引用SHELL32.DLL


public static class GetVideoLength 


    { 


        public static string GetMediaTimeLen(string path) 


        { 


            try 


            { 


                Shell32.Shell shell = new Shell32.Shell(); 


                //文件路径                


                Shell32.Folder folder = shell.NameSpace(path.Substring(0, path.LastIndexOf("\\"))); 


                //文件名称              


                Shell32.FolderItem folderitem = folder.ParseName(path.Substring(path.LastIndexOf("\\") + 2)); 


                if (Environment.OSVersion.Version.Major >= 6) 


                {  


                    return folder.GetDetailsOf(folderitem, 27); 


                } 


                else  


                {  


                    return folder.GetDetailsOf(folderitem, 21); 


                } 


            } 


            catch (Exception ex) { return null; } 


        } 


  


        public static int GetMediaTimeLenSecond(string path) 


        { 


            try 


            { 


                Shell32.Shell shell = new Shell32.Shell(); 


                //文件路径                


                Shell32.Folder folder = shell.NameSpace(path.Substring(0, path.LastIndexOf("\\"))); 


                //文件名称              


                Shell32.FolderItem folderitem = folder.ParseName(path.Substring(path.LastIndexOf("\\") + 2)); 


                string len; 


                if (Environment.OSVersion.Version.Major >= 6) 


                { 


                    len =  folder.GetDetailsOf(folderitem, 27); 


                } 


                else 


                { 


                    len = folder.GetDetailsOf(folderitem, 21);                     


                } 


  


                string[] str = len.Split(new char[] { ':' }); 


                int sum = 0; 


                sum = int.Parse(str[0]) * 60 * 60 + int.Parse(str[1]) * 60 + int.Parse(str[2]); 


  


                return sum; 


            } 


            catch (Exception ex) { return 0; } 


        } 


    } 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值