|
|
@@ -171,8 +171,7 @@ class FlutterFFmpegTestAppState extends State<MainPage>
|
|
|
|
|
|
void testRunCommand() {
|
|
|
getLastReturnCode().then((rc) => print("Last rc: $rc"));
|
|
|
- getLastCommandOutput().then((output) =>
|
|
|
- debugPrint("Last command output: \"$output\"", wrapWidth: 1024));
|
|
|
+ getLastCommandOutput().then((output) => debugPrint("Last command output: \"$output\"", wrapWidth: 1024));
|
|
|
|
|
|
print("Testing ParseArguments.");
|
|
|
|
|
|
@@ -305,9 +304,7 @@ class FlutterFFmpegTestAppState extends State<MainPage>
|
|
|
image3Path, fullVideoPath, ffmpegCodec, customOptions))
|
|
|
.then((rc) {
|
|
|
if (rc == 0) {
|
|
|
- getLastCommandOutput().then((output) => debugPrint(
|
|
|
- "Last command output: \"$output\"",
|
|
|
- wrapWidth: 1024));
|
|
|
+ getLastCommandOutput().then((output) => debugPrint("Last command output: \"$output\"", wrapWidth: 1024));
|
|
|
}
|
|
|
});
|
|
|
|