VideoTestResult.java
1.54 KB
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
/*
* Decompiled with CFR 0_118.
*/
package com.day.cq.dam.video.servlet;
import java.awt.Dimension;
import java.io.File;
public class VideoTestResult {
private String outputName;
private File output;
private String ffmpegLog;
private Dimension inputSize;
private double inputDuration;
private boolean success = false;
private String outputMimeType;
public String getOutputMimeType() {
return this.outputMimeType;
}
public void setOutputMimeType(String outputMimeType) {
this.outputMimeType = outputMimeType;
}
public String getOutputName() {
return this.outputName;
}
public void setOutputName(String outputName) {
this.outputName = outputName;
}
public File getOutput() {
return this.output;
}
public void setOutput(File output) {
this.output = output;
}
public String getFfmpegLog() {
return this.ffmpegLog;
}
public void setFfmpegLog(String ffmpegLog) {
this.ffmpegLog = ffmpegLog;
}
public Dimension getInputSize() {
return this.inputSize;
}
public void setInputSize(Dimension inputSize) {
this.inputSize = inputSize;
}
public double getInputDuration() {
return this.inputDuration;
}
public void setInputDuration(double inputDuration) {
this.inputDuration = inputDuration;
}
public boolean isSuccess() {
return this.success;
}
public void setSuccess(boolean success) {
this.success = success;
}
}