Commit ecf41dca1ff63602ccee7c5c0537bfa120923d9a

Authored by 王言钊
1 parent b0c320d1

修改目击者视频机审时间

src/main/java/com/cnlive/shenhe/api/VideosControllerApi.java
... ... @@ -180,7 +180,7 @@ public class VideosControllerApi {
180 180 //如果审核类型是机审
181 181 } else if (shyVideos1.getShenhe_type() == CommonConst.AUDIT_TYPE_MACHANE) {
182 182 //"目击者"视频,小于60秒的抽帧
183   - if (CommonUtils.isNotNull(duration) && duration < 60) {
  183 + if (CommonUtils.isNotNull(duration) && duration < 300) {
184 184 shyVideos1 = avsample(shyVideos1);
185 185 } else {
186 186 //机审超过60秒的改为人工审核
... ...