commit 860d85841338e3532fb5dd2d5f3ba681675bd50d
parent c295bcecda2cdf04b28c1b4767e05e815b41a04e
Author: Mattias Andrée <maandree@kth.se>
Date: Fri, 2 Jun 2017 23:15:48 +0200
Document blind-cat-rows and blind-cat-cols
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat:
5 files changed, 48 insertions(+), 6 deletions(-)
diff --git a/TODO b/TODO
@@ -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.
@@ -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
@@ -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@kth.se >
diff --git a/man/blind-cat-rows.1 b/man/blind-cat-rows.1
@@ -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@kth.se >
diff --git a/src/blind-cat-cols.c b/src/blind-cat-cols.c
@@ -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
@@ -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[])