Browse Source

修复 视频格式获取错误 不输出问题

pull/248/head
gaoxiongzaq 1 year ago
parent
commit
75061d843a
  1. 4
      server/src/main/java/cn/keking/service/impl/MediaFilePreviewImpl.java

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

@ -38,7 +38,7 @@ public class MediaFilePreviewImpl implements FilePreview {
String cacheName = fileAttribute.getcacheName(); String cacheName = fileAttribute.getcacheName();
String outFilePath = fileAttribute.getoutFilePath(); String outFilePath = fileAttribute.getoutFilePath();
boolean forceUpdatedCache=fileAttribute.forceUpdatedCache(); boolean forceUpdatedCache=fileAttribute.forceUpdatedCache();
String type = fileAttribute.getSuffix(); FileType type = fileAttribute.getType();
String[] mediaTypesConvert = FileType.MEDIA_TYPES_CONVERT; //获取支持的转换格式 String[] mediaTypesConvert = FileType.MEDIA_TYPES_CONVERT; //获取支持的转换格式
boolean mediaTypes = false; boolean mediaTypes = false;
for(String temp : mediaTypesConvert){ for(String temp : mediaTypesConvert){
@ -59,7 +59,7 @@ public class MediaFilePreviewImpl implements FilePreview {
if(mediaTypes){ if(mediaTypes){
convertedUrl=convertToMp4(filePath,outFilePath); convertedUrl=convertToMp4(filePath,outFilePath);
}else { }else {
convertedUrl =outFilePath; //其他协议的 不需要转换方式的文件 支持输出 convertedUrl =outFilePath; //其他协议的 不需要转换方式的文件 直接输出
} }
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace(); e.printStackTrace();

Loading…
Cancel
Save