blob: 7ba73961718d43a9167e021d16b00bfc7c01f9b0 (
plain)
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
|
/* IEncode.cs $
This file is part of the HandBrake source code.
Homepage: <http://handbrake.fr/>.
It may be used under the terms of the GNU General Public License. */
namespace HandBrake.ApplicationServices.Services.Interfaces
{
using System;
using HandBrake.ApplicationServices.EventArgs;
using HandBrake.ApplicationServices.Model;
/// <summary>
/// Encode Progess Status
/// </summary>
/// <param name="sender">
/// The sender.
/// </param>
/// <param name="e">
/// The EncodeProgressEventArgs.
/// </param>
public delegate void EncodeProgessStatus(object sender, EncodeProgressEventArgs e);
/// <summary>
/// Encode Progess Status
/// </summary>
/// <param name="sender">
/// The sender.
/// </param>
/// <param name="e">
/// The EncodeProgressEventArgs.
/// </param>
public delegate void EncodeCompletedStatus(object sender, EncodeCompletedEventArgs e);
/// <summary>
/// The IEncode Interface
/// </summary>
public interface IEncode
{
/// <summary>
/// Fires when a new CLI Job starts
/// </summary>
event EventHandler EncodeStarted;
/// <summary>
/// Fires when a CLI job finishes.
/// </summary>
event EncodeCompletedStatus EncodeCompleted;
/// <summary>
/// Encode process has progressed
/// </summary>
event EncodeProgessStatus EncodeStatusChanged;
/// <summary>
/// Gets a value indicating whether IsEncoding.
/// </summary>
bool IsEncoding { get; }
/// <summary>
/// Gets ActivityLog.
/// </summary>
string ActivityLog { get; }
/// <summary>
/// Start with a LibHb EncodeJob Object
/// </summary>
/// <param name="job">
/// The job.
/// </param>
/// <param name="enableLogging">
/// The enable Logging.
/// </param>
void Start(QueueTask job, bool enableLogging);
/// <summary>
/// Kill the CLI process
/// </summary>
void Stop();
/// <summary>
/// Attempt to Safely kill a DirectRun() CLI
/// NOTE: This will not work with a MinGW CLI
/// Note: http://www.cygwin.com/ml/cygwin/2006-03/msg00330.html
/// </summary>
void SafelyStop();
/// <summary>
/// Copy the log file to the desired destinations
/// </summary>
/// <param name="destination">
/// The destination.
/// </param>
void ProcessLogs(string destination);
}
}
|