从shell运行的c# – ffmpeg运行正常,但是从.NET内部调用时则不行

前端之家收集整理的这篇文章主要介绍了从shell运行的c# – ffmpeg运行正常,但是从.NET内部调用时则不行前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图在C#程序中使用ffmpeg(在 Windows上使用Cygwin编译),通过使用Process类来生成ffmpeg实例.但是,我遇到了一个相当奇怪的错误,没有多大意义.

当我直接从shell运行ffmpeg时(无论是Cygwin的bash,PowerShell,cmd),ffmpeg可以正确解码和重新编码文件而不会出现任何问题:

  1. PS C:\audio> ffmpeg -i .\sound1.wav -acodec libvorbis -f ogg abc.ogg
  2. ffmpeg version 1.2 Copyright (c) 2000-2013 the FFmpeg developers
  3. built on Apr 8 2013 15:10:40 with gcc 4.5.3 (GCC)
  4. configuration: --disable-encoder=vorbis --enable-libvorbis
  5. libavutil 52. 18.100 / 52. 18.100
  6. libavcodec 54. 92.100 / 54. 92.100
  7. libavformat 54. 63.104 / 54. 63.104
  8. libavdevice 54. 3.103 / 54. 3.103
  9. libavfilter 3. 42.103 / 3. 42.103
  10. libswscale 2. 2.100 / 2. 2.100
  11. libswresample 0. 17.102 / 0. 17.102
  12. [wav @ 0x800538a0] max_analyze_duration 5000000 reached at 5015510 microseconds
  13. Guessed Channel Layout for Input Stream #0.0 : stereo
  14. Input #0,wav,from '.\sound1.wav':
  15. Metadata:
  16. encoder : Lavf54.63.104
  17. Duration: 00:00:05.76,bitrate: 1411 kb/s
  18. Stream #0:0: Audio: pcm_s16le ([1][0][0][0] / 0x0001),44100 Hz,stereo,s16,1411 kb/s
  19. Output #0,ogg,to 'abc.ogg':
  20. Metadata:
  21. encoder : Lavf54.63.104
  22. Stream #0:0: Audio: vorbis,fltp
  23. Stream mapping:
  24. Stream #0:0 -> #0:0 (pcm_s16le -> libvorbis)
  25. Press [q] to stop,[?] for help
  26. size= 55kB time=00:00:05.74 bitrate= 78.5kbits/s
  27. video:0kB audio:51kB subtitle:0 global headers:4kB muxing overhead 0.817473%

文件播放正常,我可以编码为WAV或我喜欢的任何其他格式.但是,当我使用以下代码从C#调用ffmpeg时:

  1. string tempfile = Path.GetTempFileName();
  2. FileStream tempfilestr = File.OpenWrite(tempfile);
  3. input.CopyTo(tempfilestr);
  4.  
  5. ProcessStartInfo pstart = new ProcessStartInfo("ffmpeg",string.Format("-i \"{0}\" -v verbose -y -f wav -",tempfile));
  6. pstart.CreateNoWindow = true;
  7. pstart.ErrorDialog = false;
  8. pstart.RedirectStandardOutput = true;
  9. pstart.RedirectStandardError = true;
  10. pstart.UseShellExecute = false;
  11.  
  12.  
  13. Process proc = new Process();
  14. proc.StartInfo = pstart;
  15. proc.Start();
  16. StreamReader stdout = proc.StandardOutput;
  17. StreamReader stderr = proc.StandardError;
  18.  
  19. outtempfilestr = File.OpenRead(outtempfile);
  20. MemoryStream output = new MemoryStream();
  21.  
  22. stdout.BaseStream.CopyTo(output);
  23.  
  24. try {
  25. proc.Kill();
  26. }
  27. catch(InvalidOperationException) { }
  28. catch(Win32Exception) { }
  29.  
  30. File.Delete(tempfile);
  31.  
  32. return output.ToArray();

这会在输出随机产生错误

  1. ffmpeg version 1.2 Copyright (c) 2000-2013 the FFmpeg developers
  2. built on Apr 8 2013 15:10:40 with gcc 4.5.3 (GCC)
  3. configuration: --disable-encoder=vorbis --enable-libvorbis
  4. libavutil 52. 18.100 / 52. 18.100
  5. libavcodec 54. 92.100 / 54. 92.100
  6. libavformat 54. 63.104 / 54. 63.104
  7. libavdevice 54. 3.103 / 54. 3.103
  8. libavfilter 3. 42.103 / 3. 42.103
  9. libswscale 2. 2.100 / 2. 2.100
  10. libswresample 0. 17.102 / 0. 17.102
  11. [wav @ 0x80053860] parser not found for codec pcm_s16le,packets or times may be invalid.
  12. Last message repeated 1 times
  13. [wav @ 0x80053860] max_analyze_duration 5000000 reached at 5015510 microseconds
  14. Guessed Channel Layout for Input Stream #0.0 : stereo
  15. Input #0,from 'C:\Users\Bevin\AppData\Local\Temp\tmp1CCE.tmp':
  16. Duration: 00:00:05.20,1411 kb/s
  17. [graph 0 input from stream 0:0 @ 0x8011f320] tb:1/44100 samplefmt:s16 samplerate:44100 chlayout:0x3
  18. Output #0,to 'pipe:':
  19. Metadata:
  20. ISFT : Lavf54.63.104
  21. Stream #0:0: Audio: pcm_s16le ([1][0][0][0] / 0x0001),1411 kb/s
  22. Stream mapping:
  23. Stream #0:0 -> #0:0 (pcm_s16le -> pcm_s16le)
  24. Press [q] to stop,[?] for help
  25. Multiple frames in a packet from stream 0
  26. [pcm_s16le @ 0x8005c160] Invalid PCM packet,data has size 3 but at least a size of 4 was expected
  27. Error while decoding stream #0:0: Invalid data found when processing input
  28. No more output streams to write to,finishing.
  29. size= 896kB time=00:00:05.20 bitrate=1411.3kbits/s
  30. video:0kB audio:896kB subtitle:0 global headers:0kB muxing overhead 0.008719%

请注意,并非总是会发生这些错误.有时它们会发生在某些文件中,有时却不会发生.我尝试过流重定向和临时文件的各种组合,但它们都不起作用.我还验证了临时文件的完整性,并且全部检查出来.我甚至在删除之前提取了临时文件,并在shell中解密它而没有任何障碍.

有任何想法吗?

编辑:我已经尝试从运行C#的shell脚本运行ffmpeg.它给出了同样的问题.通过MinGW编译ffmpeg也会产生同样的问题.

这是因为你传递参数的方式.做这个:
  1. Process process = new Process();
  2. process.StartInfo.RedirectStandardOutput = true;
  3. process.StartInfo.RedirectStandardError = true;
  4. process.StartInfo.FileName = Path.GetDirectoryName(System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName) +
  5. @"\bin\ffmpeg.exe";
  6.  
  7. process.StartInfo.Arguments = "-i .\sound1.wav -acodec libvorbis -f ogg abc.ogg";
  8.  
  9.  
  10. process.StartInfo.UseShellExecute = false;
  11. process.StartInfo.CreateNoWindow = true;
  12. process.Start();

这很完美.

猜你在找的Bash相关文章