|
@@ -501,7 +501,10 @@ public class DataAugmentationController extends BaseController {
|
|
|
// 替换路径
|
|
|
String input = inputPath.toString().replace(localPathPath.toString(), "/api/profile").replace("\\", "/");
|
|
|
String output = outputPath.toString().replace(localPathPath.toString(), "/api/profile").replace("\\", "/");
|
|
|
- return CommonResult.success(new VideoUrl(input, output));
|
|
|
+ VideoUrl videoUrl = new VideoUrl();
|
|
|
+ videoUrl.setInput(input);
|
|
|
+ videoUrl.setOutput(output);
|
|
|
+ return CommonResult.success(videoUrl);
|
|
|
}
|
|
|
|
|
|
}
|