blob: 3b1a95dba15e1af4607e845620b3b02e9d54a292 (
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
|
/* 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 System.Diagnostics;
/// <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 EventHandler EncodeEnded;
/// <summary>
/// Gets or sets The HB Process
/// </summary>
Process HbProcess { get; set; }
/// <summary>
/// Gets a value indicating whether IsEncoding.
/// </summary>
bool IsEncoding { get; }
/// <summary>
/// Gets ActivityLog.
/// </summary>
string ActivityLog { get; }
/// <summary>
/// Create a preview sample video
/// </summary>
/// <param name="query">
/// The CLI Query
/// </param>
void CreatePreviewSample(string query);
/// <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 SafelyClose();
}
}
|