Browse Source

修复 time 转 秒的问题

Signed-off-by: allan716 <[email protected]>
allan716 3 năm trước cách đây
mục cha
commit
9a740a7a6a
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      pkg/logic/sub_timeline_fixer/SubTimelineFixerHelperEx.go

+ 1 - 1
pkg/logic/sub_timeline_fixer/SubTimelineFixerHelperEx.go

@@ -303,7 +303,7 @@ func (s SubTimelineFixerHelperEx) IsMatchBySubFile(ffmpegInfo *ffmpeg_helper.FFM
 		return false, nil, nil
 	}
 
-	targetSubEndTime := float64(srcBase.GetEndTime().Second())
+	targetSubEndTime := my_util.Time2SecondNumber(srcBase.GetEndTime())
 
 	matchResult := &MathResult{
 		VideoDuration:          ffmpegInfo.Duration,