| Document blind-cat-rows and blind-cat-cols - blind - suckless command-line vide… | |
| git clone git://git.suckless.org/blind | |
| Log | |
| Files | |
| Refs | |
| README | |
| LICENSE | |
| --- | |
| commit 860d85841338e3532fb5dd2d5f3ba681675bd50d | |
| parent c295bcecda2cdf04b28c1b4767e05e815b41a04e | |
| Author: Mattias Andrée <[email protected]> | |
| Date: Fri, 2 Jun 2017 23:15:48 +0200 | |
| Document blind-cat-rows and blind-cat-cols | |
| Signed-off-by: Mattias Andrée <[email protected]> | |
| Diffstat: | |
| M TODO | 6 ++---- | |
| A man/blind-cat-cols.1 | 22 ++++++++++++++++++++++ | |
| A man/blind-cat-rows.1 | 22 ++++++++++++++++++++++ | |
| M src/blind-cat-cols.c | 2 +- | |
| M src/blind-cat-rows.c | 2 +- | |
| 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 strea… | |
| - blind-cat-cols merge video by putting streams beside ea… | |
| - | |
| blind-transform affine transformation by matrix multiplication,… | |
| improve quality on downscaling (pixels' neighb… | |
| 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_B… | |
| 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 < [email protected] > | |
| 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 < [email protected] > | |
| 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[]) |