mirror of
https://gitcode.com/ageerle/ruoyi-ai.git
synced 2026-09-13 08:25:00 +00:00
fix: 修复本地启动、数据库初始化与构建问题
This commit is contained in:
@@ -26,7 +26,9 @@ class FfmpegCommandBuilderTest {
|
||||
List.of(source),
|
||||
TransitionType.NONE,
|
||||
0,
|
||||
AspectRatio.PORTRAIT
|
||||
AspectRatio.PORTRAIT,
|
||||
null,
|
||||
false
|
||||
);
|
||||
FfmpegFilterGraph graph = new FfmpegFilterGraph(
|
||||
"[0:v]null[v0]",
|
||||
|
||||
@@ -183,6 +183,6 @@ class FfmpegFilterGraphBuilderTest {
|
||||
List<CompositionSource> sources = java.util.stream.IntStream.range(0, sourceCount)
|
||||
.mapToObj(index -> new CompositionSource(Path.of("clip-" + index + ".mp4"), null))
|
||||
.toList();
|
||||
return new CompositionSpec(sources, transition, duration, ratio);
|
||||
return new CompositionSpec(sources, transition, duration, ratio, null, false);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user