修改音视频文件样例配置功能,表单界面删除样例文件的上传,改由后台调用外部程序生成样例文件。
Signed-off-by: zhangwei <zhangwei@intranet.com>
This commit is contained in:
@@ -27,6 +27,8 @@ public class AvFileSampleCfg extends BaseCfg<AvFileSampleCfg> {
|
||||
private Integer compileId;
|
||||
private String srcPath;
|
||||
private String samplePath;
|
||||
private Integer isSampleCreated;
|
||||
private String resultPath;
|
||||
|
||||
public String getSrcPath() {
|
||||
return srcPath;
|
||||
@@ -76,4 +78,17 @@ public class AvFileSampleCfg extends BaseCfg<AvFileSampleCfg> {
|
||||
public void setLevel(Integer level) {
|
||||
this.level = level;
|
||||
}
|
||||
public Integer getIsSampleCreated() {
|
||||
return isSampleCreated;
|
||||
}
|
||||
public void setIsSampleCreated(Integer isSampleCreated) {
|
||||
this.isSampleCreated = isSampleCreated;
|
||||
}
|
||||
public String getResultPath() {
|
||||
return resultPath;
|
||||
}
|
||||
public void setResultPath(String resultPath) {
|
||||
this.resultPath = resultPath;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user