我正在阅读一篇很好的教程或如何使用SharpFFMpeg,或者如果有一种简单的方法在c#中使用ffmpeg ...
我想将视频。(x格式)转换为video.flv屏幕截图并保存它们。
如果有一个很好的教程,或者你知道一个简单的方法,请在这里发布。
谢谢, 基兰
答案 0 :(得分:3)
使用ffmpeg.exe而不是使用sharpffmpeg。
答案 1 :(得分:1)
运行命令行参数 www.codeproject.com/KB/cs/Execute_Command_in_CSharp.aspx
提取图像 http://stream0.org/2008/02/howto-extract-images-from-a-vi.html
protected void BTN_convert_Click(object sender, EventArgs e) {
String runMe = @"C:\Documents and Settings\Wasabi Digital\My Documents\Visual Studio 2008\Projects\Evo\WEB\Bin\ffmpeg.exe";
String pathToFiles = @"C:\Documents and Settings\Wasabi Digital\My Documents\Visual Studio 2008\Evo\WEB\test\";
String convertVideo = " -i \"" + pathToFiles + "out.wmv\" \"" + pathToFiles + "sample3.flv\" ";
String makeImages = " -i \"" + pathToFiles + "out.wmv\" -r 1 -ss 00:00:01 -t 00:00:15 -f image2 -s 120x96 \"" + pathToFiles + "images%05d.png\"";
this.ExecuteCommandSync(runMe,convertVideo);
this.ExecuteCommandSync(runMe, makeImages);
}
这是从第一个链接获取的代码片段。使用命令的额外引号允许它在名称中使用空格运行。即“...... /我的文件/...”
public void ExecuteCommandSync(String command, String args) {
try {
System.Diagnostics.ProcessStartInfo procStartInfo =
new System.Diagnostics.ProcessStartInfo("\""+command+"\"",args);
Process.StandardOutput StreamReader.
procStartInfo.RedirectStandardOutput = true;
procStartInfo.UseShellExecute = false;
procStartInfo.CreateNoWindow = true;
System.Diagnostics.Process proc = new System.Diagnostics.Process();
proc.StartInfo = procStartInfo;
proc.Start();
string result = proc.StandardOutput.ReadToEnd();
Debug.WriteLine(result);
} catch (Exception objException) {
// Log the exception
}