aboutsummaryrefslogtreecommitdiffstats
path: root/man/blind-convert.1
blob: dd87b78e35cff3209d762acecd7319b3a98f0819 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
.TH BLIND-CONVERT 1 blind
.SH NAME
blind-convert - Change pixel format of a video
.SH SYNOPSIS
.B blind-convert
.IR pixel-format " ..."
.SH DESCRIPTION
.B blind-convert
converts a video to use the pixel format
.I pixel-format
(all arguments are joined together with
a blank space). Available formats are:
.TP
.B xyza f
Unscaled CIE XYZ with unscaled alpha channel, in the
order, X, Y, Z, alpha. Each subpixel value is stored
as a single-precision floating-point number using the
local machines endianness.
.TP
.B xyza !f
Unscaled CIE XYZ with unscaled alpha channel, in the
order, X, Y, Z, alpha. Each subpixel value is stored
as a double-precision floating-point number using the
local machines endianness. This is the default format
in other commands.
.TP
.B xyza
Unscaled CIE XYZ with unscaled alpha channel, in the
order, X, Y, Z, alpha. Each subpixel value is stored
in the same format as in the input stream.
.TP
.B f
The same colour space as the input stream, but with
each subpixel value is stored as a single-precision
floating-point number using the local machines
endianness.
.TP
.B !f
The same colour space as the input stream, but with
each subpixel value is stored as a double-precision
floating-point number using the local machines
endianness.
.SH SEE ALSO
.BR blind (7)
.SH AUTHORS
Mattias Andrée
.RI < maandree@kth.se >