On Feb 10 20:31:35, [email protected] wrote:
> On 2/10/20 18:07, Jan Stary wrote:
> > +Create a stereo file having two given mono channels:
> 
> Might be better to say:
> 
> Combine two mono files into a single stereo file, one mono file per channel:
> 
> "Create a stereo file" makes it sound like you're creating it out of thin
> air, or something. :-)

Yes, thank you. Below I tweaked the wording some more to make it
as similar to the existing text as possible ("mix" not "combine"),
while retaining the point that each of the mono files ends up
in one channel of the stereo.

        Jan

Index: aucat.1
===================================================================
RCS file: /cvs/src/usr.bin/aucat/aucat.1,v
retrieving revision 1.114
diff -u -p -r1.114 aucat.1
--- aucat.1     24 Apr 2017 06:47:41 -0000      1.114
+++ aucat.1     11 Feb 2020 06:26:57 -0000
@@ -285,8 +285,14 @@ $ aucat -r 44100 -c 2:3 -o file1.wav -c 
 .Pp
 Split a stereo file into two mono files:
 .Bd -literal -offset indent
-$ aucat -n -i stereo.wav -c 0:0 -o left.wav \e
-       -c 1:1 -o right.wav
+$ aucat -n -i stereo.wav \e
+       -c 0:0 -o left.wav -c 1:1 -o right.wav
+.Ed
+.Pp
+Mix two mono files into a stereo file, one per channel:
+.Bd -literal -offset indent
+$ aucat -n -c 0:0 -i left.wav -c 1:1 -i right.wav \e
+       -c 0:1 -o stereo.wav       
 .Ed
 .Sh SEE ALSO
 .Xr audioctl 1 ,

Reply via email to