2

我正在学习一个很好的教程或如何使用 SharpFFMpeg 或者是否有一种在 c# 中使用 ffmpeg 的简单方法......

我想将 video.(x 格式) 转换为 video.flv 截屏并随时保存。

如果那里有一个很好的教程或者你知道一个简单的方法,请在这里发布。

谢谢,基兰

4

2 回答 2

4

那是使用 ffmpeg.exe 而 c# 不使用sharpffmpeg。

于 2009-11-25T17:51:17.770 回答
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
  }
于 2009-10-26T06:31:25.797 回答