(wrong string) ée

From: <git_AT_suckless.org>
Date: Fri, 2 Jun 2017 23:17:03 +0200 (CEST)

commit 860d85841338e3532fb5dd2d5f3ba681675bd50d
Author: Mattias Andrée <maandree_AT_kth.se>
AuthorDate: Fri Jun 2 23:15:48 2017 +0200
Commit: Mattias Andrée <maandree_AT_kth.se>
CommitDate: Fri Jun 2 23:15:48 2017 +0200

    Document blind-cat-rows and blind-cat-cols
    
    Signed-off-by: Mattias Andrée <maandree_AT_kth.se>

diff --git a/TODO b/TODO
index 5c4461b..1ffabe3 100644
--- a/TODO
+++ b/TODO
_AT_@ -1,7 +1,3 @@
-Write manpages for:
- blind-cat-rows merge video by vertically stacking streams (inverse of blind-split-rows)
- blind-cat-cols merge video by putting streams beside each other (inverse of blind-split-cols)
-
 blind-transform affine transformation by matrix multiplication, -t for tiling, -s for
                                 improve quality on downscaling (pixels' neighbours must not change).
 blind-chroma-key replace a chroma with transparency.
_AT_@ -62,6 +58,8 @@ Add [-j jobs] to blind-from-video and blind-to-video.
 
 Add -f (framewise) to blind-repeat
 
+blind-rewrite-head: add support pipes
+
 Generate a header file with the appropriate values for USING_BINARY32, USING_BINARY64.
 long double is slightly faster than long.
 long double (xyza q) could be added as another format.
diff --git a/man/blind-cat-cols.1 b/man/blind-cat-cols.1
new file mode 100644
index 0000000..a2af338
--- /dev/null
+++ b/man/blind-cat-cols.1
_AT_@ -0,0 +1,22 @@
+.TH BLIND-CAT-COLS 1 blind
+.SH NAME
+blind-cat-cols - Place videos side by side
+.SH SYNOPSIS
+.B blind-cat-cols
+.IR stream \ ...
+.SH DESCRIPTION
+.B blind-cat-cols
+reads all specified video
+.IR stream s
+and writes them side by side, with
+the first video to the left and the
+last video at the right, to stdout.
+.SH SEE ALSO
+.BR blind (7),
+.BR blind-split-cols (1),
+.BR blind-concat (1),
+.BR blind-interleave (1),
+.BR blind-cat-rows (1),
+.SH AUTHORS
+Mattias Andrée
+.RI < maandree_AT_kth.se >
diff --git a/man/blind-cat-rows.1 b/man/blind-cat-rows.1
new file mode 100644
index 0000000..308d219
--- /dev/null
+++ b/man/blind-cat-rows.1
_AT_@ -0,0 +1,22 @@
+.TH BLIND-CAT-ROWS 1 blind
+.SH NAME
+blind-cat-rows - Stack videos vertically
+.SH SYNOPSIS
+.B blind-cat-rows
+.IR stream \ ...
+.SH DESCRIPTION
+.B blind-cat-rows
+reads all specified video
+.IR stream s
+and writes them vertically stacked, with
+the first video at the top and the last
+video at the bottom, to stdout.
+.SH SEE ALSO
+.BR blind (7),
+.BR blind-split-rows (1),
+.BR blind-concat (1),
+.BR blind-interleave (1),
+.BR blind-cat-cols (1),
+.SH AUTHORS
+Mattias Andrée
+.RI < maandree_AT_kth.se >
diff --git a/src/blind-cat-cols.c b/src/blind-cat-cols.c
index ef7d15e..d8bdb8b 100644
--- a/src/blind-cat-cols.c
+++ b/src/blind-cat-cols.c
_AT_@ -1,7 +1,7 @@
 /* See LICENSE file for copyright and license details. */
 #include "common.h"
 
-USAGE("file ...")
+USAGE("stream ...")
 
 int
 main(int argc, char *argv[])
diff --git a/src/blind-cat-rows.c b/src/blind-cat-rows.c
index a41655c..53978cd 100644
--- a/src/blind-cat-rows.c
+++ b/src/blind-cat-rows.c
_AT_@ -1,7 +1,7 @@
 /* See LICENSE file for copyright and license details. */
 #include "common.h"
 
-USAGE("file ...")
+USAGE("stream ...")
 
 int
 main(int argc, char *argv[])
Received on Fri Jun 02 2017 - 23:17:03 CEST

This archive was generated by hypermail 2.3.0 : Fri Jun 02 2017 - 23:24:18 CEST