[vlc-commits] macosx: Fix streaming using convert and save panel
David Fuhrmann
git at videolan.org
Thu Aug 23 19:25:22 CEST 2018
vlc/vlc-3.0 | branch: master | David Fuhrmann <dfuhrmann at videolan.org> | Thu Aug 23 18:40:16 2018 +0200| [7043b5bc20c30bf225601571679662ac8af6d9a9] | committer: David Fuhrmann
macosx: Fix streaming using convert and save panel
Closing bracket was missing, also :sout-keep seems to be not supported
(or needed) here anymore.
close #21037
(cherry picked from commit fdb955057a71eb71bfb635fd099085585d01a767)
Signed-off-by: David Fuhrmann <dfuhrmann at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc/vlc-3.0.git/?a=commit;h=7043b5bc20c30bf225601571679662ac8af6d9a9
---
modules/gui/macosx/VLCConvertAndSaveWindowController.m | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/modules/gui/macosx/VLCConvertAndSaveWindowController.m b/modules/gui/macosx/VLCConvertAndSaveWindowController.m
index fa2cd6884d..c267152612 100644
--- a/modules/gui/macosx/VLCConvertAndSaveWindowController.m
+++ b/modules/gui/macosx/VLCConvertAndSaveWindowController.m
@@ -944,10 +944,13 @@
[composedOptions appendFormat:@",soverlay"];
}
+ // Close transcode
+ [composedOptions appendString:@"}"];
+
if (!b_streaming) {
/* file transcoding */
// add muxer
- [composedOptions appendFormat:@"}:standard{mux=%@", [self.currentProfile firstObject]];
+ [composedOptions appendFormat:@":standard{mux=%@", [self.currentProfile firstObject]];
// add output destination
@@ -983,7 +986,7 @@
}
}
- [composedOptions appendString:@"} :sout-keep"];
+ [composedOptions appendString:@"}"];
}
return [NSString stringWithString:composedOptions];
More information about the vlc-commits
mailing list