[vlc-commits] macosx: Fix streaming using convert and save panel
David Fuhrmann
git at videolan.org
Thu Aug 23 19:17:16 CEST 2018
vlc | branch: master | David Fuhrmann <dfuhrmann at videolan.org> | Thu Aug 23 18:40:16 2018 +0200| [fdb955057a71eb71bfb635fd099085585d01a767] | 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
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=fdb955057a71eb71bfb635fd099085585d01a767
---
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 f663075179..0fff3fe1a2 100644
--- a/modules/gui/macosx/VLCConvertAndSaveWindowController.m
+++ b/modules/gui/macosx/VLCConvertAndSaveWindowController.m
@@ -954,10 +954,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
@@ -993,7 +996,7 @@
}
}
- [composedOptions appendString:@"} :sout-keep"];
+ [composedOptions appendString:@"}"];
}
return [NSString stringWithString:composedOptions];
More information about the vlc-commits
mailing list