mirror of
https://github.com/mpv-player/mpv
synced 2024-12-25 00:02:13 +00:00
fixes some typos, wording and formatting
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13319 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
3595966380
commit
5766c1eb45
@ -2684,37 +2684,40 @@ images and stores it in a file called 'stream.yuv' in the current
|
|||||||
directory.
|
directory.
|
||||||
The format is the same as the one employed by mjpegtools, so this is
|
The format is the same as the one employed by mjpegtools, so this is
|
||||||
useful if you want to process the video with the mjpegtools suite.
|
useful if you want to process the video with the mjpegtools suite.
|
||||||
It support the YV12, RGB (24 bpp) and BGR (24 bpp) format.
|
It supports the YV12, RGB (24 bpp) and BGR (24 bpp) format.
|
||||||
.PD 0
|
.PD 0
|
||||||
.RSs
|
.RSs
|
||||||
.IPs interlaced
|
.IPs interlaced
|
||||||
Write the output as interlaced frames, top field first.
|
Write the output as interlaced frames, top field first.
|
||||||
.IPs interlaced_bf
|
.IPs interlaced_bf
|
||||||
Write the output as interlaced frames, bottom field first.
|
Write the output as interlaced frames, bottom field first.
|
||||||
.RE
|
.REss
|
||||||
.PD 1
|
.PD 1
|
||||||
|
.RS
|
||||||
.br
|
.br
|
||||||
.I NOTE:
|
.I NOTE:
|
||||||
If you don't specify any option the output is progressive (ie. no interlace).
|
If you don't specify any option the output is progressive (ie.\& no interlace).
|
||||||
You must specify only one option.
|
.RE
|
||||||
.
|
.
|
||||||
.TP
|
.TP
|
||||||
.B gif89a\
|
.B gif89a\
|
||||||
Output each frame into a single animated GIF file in the current directory.
|
Output each frame into a single animated GIF file in the current directory.
|
||||||
It support only RGB format with 24 bpp and the output is converted to 256
|
It supports only RGB format with 24 bpp and the output is converted to 256
|
||||||
colors.
|
colors.
|
||||||
.PD 0
|
.PD 0
|
||||||
.RSs
|
.RSs
|
||||||
.IPs fps\ \ \
|
.IPs fps\ \ \
|
||||||
Float value to specify framerate (default: 5).
|
Float value to specify framerate (default: 5.0).
|
||||||
.IPs filename
|
.IPs filename
|
||||||
Specify the output filename (default: out.gif).
|
Specify the output filename (default: ./out.gif).
|
||||||
.RE
|
.REss
|
||||||
.PD 1
|
.PD 1
|
||||||
|
.RS
|
||||||
.br
|
.br
|
||||||
.I NOTE:
|
.I NOTE:
|
||||||
You must specify the framerate before the filename or the framerate will
|
You must specify the framerate before the filename or the framerate will
|
||||||
be part of the filename.
|
be part of the filename.
|
||||||
|
.RE
|
||||||
.
|
.
|
||||||
.TP
|
.TP
|
||||||
.B jpeg\ \ \
|
.B jpeg\ \ \
|
||||||
@ -2751,33 +2754,39 @@ Must be equal to or larger than 1 (default: 1000).
|
|||||||
.B pgm\ \ \ \
|
.B pgm\ \ \ \
|
||||||
Output each frame into a PGM file in the current directory.
|
Output each frame into a PGM file in the current directory.
|
||||||
Each file takes the frame number padded with leading zeros as name.
|
Each file takes the frame number padded with leading zeros as name.
|
||||||
It support only YV12 format.
|
Only supports the YV12 format.
|
||||||
The resulting image is (width) * (height * 1.5) of the original
|
The resulting image is (width) * (height * 1.5) of the original
|
||||||
image.
|
image.
|
||||||
At coordinate 0,0 for w,h you have the Y plane, at coordinate 0,h for
|
At coordinates 0,0 for width,height you have the Y plane, at coordinates
|
||||||
w/2,h/2 you have the U plane and at w/2,h for w/2,h/2 you have the V plane.
|
0,height for width/2,height/2 you have the U plane and at width/2,height for
|
||||||
Actually there are no suboptions available.
|
width/2,height/2 you have the V plane.
|
||||||
|
There are no suboptions.
|
||||||
.
|
.
|
||||||
.TP
|
.TP
|
||||||
.B png\ \ \ \
|
.B png\ \ \ \
|
||||||
Output each frame into a PNG file in the current directory.
|
Output each frame into a PNG file in the current directory.
|
||||||
Each file takes the frame number padded with leading zeros as name.
|
Each file takes the frame number padded with leading zeros as name.
|
||||||
It support RGB and BGR format with 24 bpp.
|
24bpp RGB and BGR formats are supported.
|
||||||
Actually there are no suboptions available but you can specify
|
There are no suboptions available but you can specify the compression level
|
||||||
the compression level with the -z option, ranging from 0 (no
|
with the \-z option, ranging from 0 (no compression) to 9 (maximum
|
||||||
compression) to 9 (maximum compression).
|
compression).
|
||||||
.
|
.
|
||||||
.TP
|
.TP
|
||||||
.B tga\ \ \ \
|
.B tga\ \ \ \
|
||||||
Output each frame into a Targa file in the current directory.
|
Output each frame into a Targa file in the current directory.
|
||||||
Each file takes the frame number padded with leading zeros as name.
|
Each file takes the frame number padded with leading zeros as name.
|
||||||
The reason for this output video driver is to have a simple lossless
|
The purpose of this video output driver is to have a simple lossless
|
||||||
image writer to use without any external library.
|
image writer to use without any external library.
|
||||||
It support BGR[A] color format, with 15, 24 and 32 bpp.
|
It supports BGR[A] color format, with 15, 24 and 32 bpp.
|
||||||
To force a particular format use the -vf format filter, e.g.\&
|
There are no suboptions.
|
||||||
-vf format=bgr15 to save images with 2 bytes per pixel.
|
You can force a particular format with the format video filter.
|
||||||
Actually there are no suboptions available.
|
.sp 1
|
||||||
|
.I EXAMPLE:
|
||||||
|
.PD 0
|
||||||
|
.RSs
|
||||||
|
.IPs "\-vf format=bgr15"
|
||||||
|
Saves images with 2 bytes per pixel.
|
||||||
|
.RE
|
||||||
.
|
.
|
||||||
.
|
.
|
||||||
.
|
.
|
||||||
|
Loading…
Reference in New Issue
Block a user