大致流程

大致流程:下载​​ffmpeg​​到项目的某个位置,然后调用控制台执行​​ffmpeg​​的相关命令


代码



/// <summary>
/// 测试
/// </summary>
public void test1()
{
CreatePicFromVideo("1.mp4", "1.png");
CreatePicFromVideo("2.mp4", "2.png");
}



/// <summary>
/// 生成视频的预览图
/// </summary>
/// <param name="videoFilePath"></param>
/// <param name="imgFilePath"></param>
public static void CreatePicFromVideo(string videoFilePath, string imgFilePath)
{
//string videoFilePath = "1.3gp";
//string imgName = " 1.jpg";
string ffmpegPath = "ffmpeg\\ffmpeg.exe";
string cutTimeFrame = "1";
string widthAndHeight = "";//960*540

//得到预览图的宽高
int width = -1;
int height = -1;
GetMovWidthAndHeight(ffmpegPath, videoFilePath, out width, out height);
widthAndHeight = $"{width}*{height}";

var startInfo = new ProcessStartInfo(ffmpegPath);
startInfo.WindowStyle = ProcessWindowStyle.Hidden;

string cmd = $" -i \"{videoFilePath}\" -y -f image2 -ss {cutTimeFrame} -t 0.001 -s {widthAndHeight} \"{imgFilePath}\"";
startInfo.Arguments = cmd;
Process.Start(startInfo);
}

/// <summary>
/// 获取视频的帧宽度和帧高度
/// </summary>
/// <param name="ffmpegPath"></param>
/// <param name="videoFilePath"></param>
/// <param name="width"></param>
/// <param name="height"></param>
public static void GetMovWidthAndHeight(string ffmpegPath, string videoFilePath, out int width, out int height)
{
width = -1;
height = -1;
string output;
string error;

//"ffmpeg\\ffmpeg.exe" -i "1.mp4"
string cmd = $"\"{ ffmpegPath}\" -i \"{ videoFilePath}\"";

ExecuteCommand(cmd, out output, out error);

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

/// <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)
{
//创建一个进程
Process pc = new Process();
pc.StartInfo.FileName = command;
pc.StartInfo.UseShellExecute = false;
pc.StartInfo.RedirectStandardOutput = true;
pc.StartInfo.RedirectStandardError = true;
pc.StartInfo.CreateNoWindow = true;

//启动进程
pc.Start();

//准备读出输出流和错误流
string outputData = string.Empty;
string errorData = string.Empty;
pc.BeginOutputReadLine();
pc.BeginErrorReadLine();

pc.OutputDataReceived += (ss, ee) =>
{
outputData += ee.Data;
};

pc.ErrorDataReceived += (ss, ee) =>
{
errorData += ee.Data;
};

//等待退出
pc.WaitForExit();

//关闭进程
pc.Close();

//返回流结果
output = outputData;
error = errorData;
}



效果

功能/项目 上传视频 生成视频预览图_宽高