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

This commit is contained in:
gaoxiongzaq 2023-10-24 11:27:23 +08:00
parent 502b21147d
commit 75061d843a

View File

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