aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--TODO6
-rw-r--r--man/blind-cat-cols.122
-rw-r--r--man/blind-cat-rows.122
-rw-r--r--src/blind-cat-cols.c2
-rw-r--r--src/blind-cat-rows.c2
5 files changed, 48 insertions, 6 deletions
diff --git a/TODO b/TODO
index 5c4461b..1ffabe3 100644
--- 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
new file mode 100644
index 0000000..a2af338
--- /dev/null
+++ 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
new file mode 100644
index 0000000..308d219
--- /dev/null
+++ 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
index ef7d15e..d8bdb8b 100644
--- 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
index a41655c..53978cd 100644
--- 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[])