Browse Source

修复 视频转换方式 在压缩包里面 不自动创建文件路径而导致的报错

pull/248/head
gaoxiongzaq 1 year ago
parent
commit
502b21147d
  1. 14
      server/src/main/java/cn/keking/service/impl/MediaFilePreviewImpl.java

14
server/src/main/java/cn/keking/service/impl/MediaFilePreviewImpl.java

@ -38,6 +38,7 @@ public class MediaFilePreviewImpl implements FilePreview {
String cacheName = fileAttribute.getcacheName();
String outFilePath = fileAttribute.getoutFilePath();
boolean forceUpdatedCache=fileAttribute.forceUpdatedCache();
String type = fileAttribute.getSuffix();
String[] mediaTypesConvert = FileType.MEDIA_TYPES_CONVERT; //获取支持的转换格式
boolean mediaTypes = false;
for(String temp : mediaTypesConvert){
@ -58,13 +59,12 @@ public class MediaFilePreviewImpl implements FilePreview {
if(mediaTypes){
convertedUrl=convertToMp4(filePath,outFilePath);
}else {
convertedUrl =outFilePath; //不是http协议的 但是不是转换格式的直接输出
convertedUrl =outFilePath; //其他协议的 不需要转换方式的文件 支持输出
}
} catch (Exception e) {
e.printStackTrace();
}
if (convertedUrl == null ) {
fileHandlerService.addConvertedFile(cacheName, "error"); //失败加入缓存
return otherFilePreview.notSupportedFile(model, fileAttribute, "视频转换异常,请联系管理员");
}
if (ConfigConstants.isCacheEnabled()) {
@ -77,9 +77,12 @@ public class MediaFilePreviewImpl implements FilePreview {
}
return MEDIA_FILE_PREVIEW_PAGE;
}
if(type.equals(FileType.MEDIA)){ // 支持输出 只限默认格式
model.addAttribute("mediaUrl", url);
return MEDIA_FILE_PREVIEW_PAGE;
}
return otherFilePreview.notSupportedFile(model, fileAttribute, "系统还不支持该格式文件的在线预览");
}
/**
* 检查视频文件转换是否已开启以及当前文件是否需要转换
* @return
@ -101,6 +104,13 @@ public class MediaFilePreviewImpl implements FilePreview {
if(desFile.exists()){
return outFilePath;
}
int index = outFilePath.lastIndexOf(".");
String folder = outFilePath.substring(0, index);
File path = new File(folder);
//目录不存在 创建新的目录
if (!path.exists()) {
path.mkdirs();
}
frameGrabber.start();
recorder = new FFmpegFrameRecorder(outFilePath, frameGrabber.getImageWidth(), frameGrabber.getImageHeight(), frameGrabber.getAudioChannels());
// recorder.setImageHeight(640);

Loading…
Cancel
Save