-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFFMpegService.cs
99 lines (82 loc) · 2.91 KB
/
FFMpegService.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
using System;
using System.Diagnostics;
using System.IO;
using System.Reflection;
namespace JanusPostProcess
{
public static class FFMpegService
{
public const string FFMpegExeName = "ffmpeg.exe";
private static string AppPath = System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetEntryAssembly().Location);
private static string FFMpegFolder = AppPath;
public static bool FFMpegExists
{
get
{
// FFMpeg folder
if (!string.IsNullOrWhiteSpace(FFMpegFolder))
{
var path = Path.Combine(FFMpegFolder, FFMpegExeName);
if (File.Exists(path))
return true;
}
// application directory
var cpath = Path.Combine(Assembly.GetExecutingAssembly().Location, FFMpegExeName);
if (File.Exists(cpath))
return true;
// Current working directory
if (File.Exists(FFMpegExeName))
return true;
// PATH
try
{
Process.Start(new ProcessStartInfo
{
FileName = FFMpegExeName,
Arguments = "-version",
UseShellExecute = false,
CreateNoWindow = true
});
return true;
}
catch { return false; }
}
}
public static string FFMpegExePath
{
get
{
// FFMpeg folder
if (!string.IsNullOrWhiteSpace(FFMpegFolder))
{
var path = Path.Combine(FFMpegFolder, FFMpegExeName);
if (File.Exists(path))
return path;
}
// application directory
var cpath = Path.Combine(Assembly.GetExecutingAssembly().Location, FFMpegExeName);
return File.Exists(cpath) ? cpath : FFMpegExeName;
}
}
public static Process StartFFMpeg(string Arguments)
{
var process = new Process
{
StartInfo =
{
FileName = FFMpegExePath,
Arguments = Arguments,
UseShellExecute = false,
CreateNoWindow = true,
RedirectStandardError = true,
RedirectStandardInput = true
},
EnableRaisingEvents = true
};
//AUZ Do this later process.ErrorDataReceived += (s, e) => FFMpegLog.Instance.Write(e.Data);
process.Start();
process.BeginErrorReadLine();
return process;
}
}
}