C#:读取视频的宽度和高度等信息_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > C#:读取视频的宽度和高度等信息

C#:读取视频的宽度和高度等信息

 2014/11/15 21:06:42  zhoumy  程序员俱乐部  我要评论(0)
  • 摘要:读取方式:使用ffmpeg读取,所以需要先下载ffmpeg。网上资源有很多。通过ffmpeg执行一条CMD命令可以读取出视频的帧高度和帧宽度信息。如图:蓝线框中可以看到获取到的帧高度和帧宽度。接下来的事情就简单了。构造一个命令,然后执行就ok。我并未测试过所有视频格式,估计常见的格式应该都支持。执行命令的代码如下:///<summary>///执行一条command命令///</summary>///<paramname="command">
  • 标签:C#

读取方式:使用ffmpeg读取,所以需要先下载ffmpeg。网上资源有很多。

通过ffmpeg执行一条CMD命令可以读取出视频的帧高度和帧宽度信息。

如图:

 

蓝线框中可以看到获取到的帧高度和帧宽度。

接下来的事情就简单了。构造一个命令,然后执行就ok。我并未测试过所有视频格式,估计常见的格式应该都支持。

执行命令的代码如下:

/// <summary>
        /// 执行一条command命令
        /// </summary>
        /// <param name="command">需要执行的Command</param>
        /// <param name="output">输出</param>
        /// <param name="error">错误</param>
        public static void ExecuteCommand(string command,out string output,out string error)
        {
            try
            {
                //创建一个进程
                Process pc = new Process();
                pc.StartInfo.FileName = "cmd.exe";
                pc.StartInfo.UseShellExecute = false;
                pc.StartInfo.RedirectStandardInput = true;
                pc.StartInfo.RedirectStandardOutput = true;
                pc.StartInfo.RedirectStandardError = true;
                pc.StartInfo.CreateNoWindow = true;
 
                //启动进程
                pc.Start();
                //执行命令
                pc.StandardInput.WriteLine(command);
 
                //等待退出
                pc.StandardInput.WriteLine("exit");
 
                //获取所有输出
                output = pc.StandardOutput.ReadToEnd();
                error = pc.StandardError.ReadToEnd();
                //关闭进程
                pc.Close();
            }
            catch(Exception)
            {
                output = null;
                error = null;
            }
        }

获取高度的宽度的代码如下:(这里假设ffmpeg存在于应用程序目录)

/// <summary>
        /// 获取视频的帧宽度和帧高度
        /// </summary>
        /// <param name="videoFilePath">mov文件的路径</param>
        /// <returns>null表示获取宽度或高度失败</returns>
        public static void GetMovWidthAndHeight(string videoFilePath, out int? width, out int? height)
        {
            try
            {
                //判断文件是否存在
                if (!File.Exists(videoFilePath))
                {
                    width = null;
                    height = null;
                }
 
                //执行命令获取该文件的一些信息 
                string ffmpegPath = new FileInfo(Process.GetCurrentProcess().MainModule.FileName).DirectoryName + @"\ffmpeg.exe";
 
                string output;
                string error;
                Helpers.ExecuteCommand("\"" + ffmpegPath + "\"" + " -i " + "\"" + videoFilePath + "\"",out output,out error);
                if(string.IsNullOrEmpty(error))
                {
                    width = null;
                    height = null;
                }
 
                //通过正则表达式获取信息里面的宽度信息
                Regex regex = new Regex("(\\d{2,4})x(\\d{2,4})", RegexOptions.Compiled);
                Match m = regex.Match(error);
                if (m.Success)
                {
                    width = int.Parse(m.Groups[1].Value);
                    height = int.Parse(m.Groups[2].Value);
                }
                else
                {
                    width = null;
                    height = null;
                }
            }
            catch (Exception)
            {
                width = null;
                height = null;
            }
        }

 

 

转载声明:本文转载自http://www.zhoumy.cn/,原文链接:http://www.zhoumy.cn/?p=35

发表评论
用户名: 匿名