mirror of https://git.ffmpeg.org/ffmpeg.git
doc/ffmpeg: make the ASCII flow charts narrower to fit onto TTY
These charts in man page are currently destroyed. Signed-off-by: Timothy Gu <timothygu99@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
45581ed15d
commit
8fe1076094
|
@ -80,11 +80,22 @@ The transcoding process in @command{ffmpeg} for each output can be described by
|
||||||
the following diagram:
|
the following diagram:
|
||||||
|
|
||||||
@example
|
@example
|
||||||
_______ ______________ _________ ______________ ________
|
_______ ______________
|
||||||
| | | | | | | | | |
|
| | | |
|
||||||
| input | demuxer | encoded data | decoder | decoded | encoder | encoded data | muxer | output |
|
| input | demuxer | encoded data | decoder
|
||||||
| file | ---------> | packets | ---------> | frames | ---------> | packets | -------> | file |
|
| file | ---------> | packets | -----+
|
||||||
|_______| |______________| |_________| |______________| |________|
|
|_______| |______________| |
|
||||||
|
v
|
||||||
|
_________
|
||||||
|
| |
|
||||||
|
| decoded |
|
||||||
|
| frames |
|
||||||
|
________ ______________ |_________|
|
||||||
|
| | | | |
|
||||||
|
| output | <-------- | encoded data | <----+
|
||||||
|
| file | muxer | packets | encoder
|
||||||
|
|________| |______________|
|
||||||
|
|
||||||
|
|
||||||
@end example
|
@end example
|
||||||
|
|
||||||
|
@ -113,9 +124,9 @@ an additional step between decoding and encoding:
|
||||||
|
|
||||||
@example
|
@example
|
||||||
_________ __________ ______________
|
_________ __________ ______________
|
||||||
| | | | | |
|
| | simple | | | |
|
||||||
| decoded | simple filtergraph | filtered | encoder | encoded data |
|
| decoded | fltrgrph | filtered | encoder | encoded data |
|
||||||
| frames | -------------------> | frames | ---------> | packets |
|
| frames | ----------> | frames | ---------> | packets |
|
||||||
|_________| |__________| |______________|
|
|_________| |__________| |______________|
|
||||||
|
|
||||||
@end example
|
@end example
|
||||||
|
@ -125,10 +136,10 @@ Simple filtergraphs are configured with the per-stream @option{-filter} option
|
||||||
A simple filtergraph for video can look for example like this:
|
A simple filtergraph for video can look for example like this:
|
||||||
|
|
||||||
@example
|
@example
|
||||||
_______ _____________ _______ _____ ________
|
_______ _____________ _______ ________
|
||||||
| | | | | | | | | |
|
| | | | | | | |
|
||||||
| input | ---> | deinterlace | ---> | scale | ---> | fps | ---> | output |
|
| input | ---> | deinterlace | ---> | scale | ---> | output |
|
||||||
|_______| |_____________| |_______| |_____| |________|
|
|_______| |_____________| |_______| |________|
|
||||||
|
|
||||||
@end example
|
@end example
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue