[longomatch] Use avconv instead of ffmpeg binary



commit 711e8ee35d8fb353e67dc0b41a89516bac529d00
Author: Andoni Morales Alastruey <ylatuya gmail com>
Date:   Thu Jun 13 22:26:32 2013 +0200

    Use avconv instead of ffmpeg binary

 LongoMatch.Multimedia/Utils/MpegRemuxer.cs |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)
---
diff --git a/LongoMatch.Multimedia/Utils/MpegRemuxer.cs b/LongoMatch.Multimedia/Utils/MpegRemuxer.cs
index acc4b64..201f0a3 100644
--- a/LongoMatch.Multimedia/Utils/MpegRemuxer.cs
+++ b/LongoMatch.Multimedia/Utils/MpegRemuxer.cs
@@ -95,12 +95,13 @@ namespace LongoMatch.Video.Utils
                
                private int LaunchRemuxer () {
                        int ret = 1;
+                       
                        ProcessStartInfo startInfo = new ProcessStartInfo();
                        startInfo.CreateNoWindow = true;
                        if (System.Environment.OSVersion.Platform != PlatformID.Win32NT) {
                                startInfo.UseShellExecute = false;
                        }
-                       startInfo.FileName = "ffmpeg";
+                       startInfo.FileName = "avconv";
                        startInfo.Arguments = String.Format("-i {0} -vcodec copy -acodec copy -y -sn {1} ",
                                                            filepath, newFilepath);
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]