Mercurial > mplayer.hg
annotate DOCS/mencoder.1 @ 2864:1a710f130a7f
TV input documentation begin (examples, options)
author | gabucino |
---|---|
date | Tue, 13 Nov 2001 13:17:12 +0000 |
parents | 8bb4e195d7d7 |
children | 4a1802c5bbee |
rev | line source |
---|---|
2602 | 1 .\" MEncoder (C) 2000-2001 Arpad Gereoffy <arpi@esp-team.scene.hu> |
2 .\" This manpage was/is done by Gabucino | |
2597 | 3 .\" |
4 .TH MEncoder | |
5 .SH NAME | |
6 mencoder \- Movie Encoder for Linux | |
7 .SH SYNOPSIS | |
8 .B mencoder | |
2602 | 9 .RB [ \-vcd\ <track\ number> ] |
10 .RB [ \-dvd\ <titleid> ] | |
11 .RB [ \-chapter\ <chapterid> ] | |
12 .RB [ \-dvdangle\ <angleid> ] | |
13 .RB [ \-dvdkey\ <key> ] | |
14 .RB [ \-nobps ] | |
15 .RB [ \-aid\ <id> ] | |
16 .RB [ \-vid\ <id> ] | |
17 .RB [ \-pp\ <quality> ] | |
18 .RB [ \-vc\ <video\ codec\ name> ] | |
19 .RB [ \-ac\ <audio\ codec\ name> ] | |
20 .RB [ \-vfm\ <video\ codec\ family> ] | |
21 .RB [ \-afm\ <audio\ codec\ family> ] | |
2630 | 22 .RB [ \-include\ <configfile> ] |
2674 | 23 .RB [ \-mc\ seconds/5f ] |
2602 | 24 .RB [ \-v ] |
25 .RB [ \-mp3file\ <filename> ] | |
26 .RB [ \-ac3file\ <filename> ] | |
27 .RB [ \-ovc\ <video\ codec\ name> ] | |
28 .RB [ \-oac\ <audio\ codec\ name> ] | |
2628 | 29 .RB [ \-divx4opts\ <codec\ options> ] |
30 .RB [ \-lameopts\ <codec\ options> ] | |
2602 | 31 .RB [ \-pass\ <1/2> ] |
2603 | 32 .RB [ \-ofps\ <fps> ] |
33 .RB [ \-o\ <filename> ] | |
2664 | 34 .RB [ \-frames\ <number> ] |
2602 | 35 .I - or file or device |
2597 | 36 .PP |
37 .SH DESCRIPTION | |
38 .I mencoder | |
39 Encoder. | |
40 .LP | |
41 .SH "GENERAL OPTIONS" | |
42 .TP | |
43 .I NOTE | |
2602 | 44 Every "flag" option has "noflag" pair, e.g. -flag opposite is -noflag |
45 .TP | |
46 .B \-vcd <track number> | |
47 Encode the specified VCD track. | |
2597 | 48 .TP |
2602 | 49 .B \-dvd <title number> |
50 Encode the specified DVD title. | |
51 .TP | |
52 .B \-chapter <chapter id> | |
53 Use with -dvd option (see above). Start encoding at the specified chapter. | |
2597 | 54 .TP |
2602 | 55 .B \-dvdangle <angle id> |
56 Use with -dvd option (see above), and if the DVD disc has multiple angles. | |
57 It will encode the angle specified here. | |
58 .TP | |
59 .B \-dvdkey <key> | |
60 Used to decrypt CSS-encrypted streams on hard disk (with given CSS decrypt | |
61 key). | |
2597 | 62 .TP |
2602 | 63 .B \-nobps |
64 Used only for AVIs. Do not use the bps value in the AVI header, instead | |
65 calculate it. | |
66 .TP | |
67 .B \-aid <audio stream id> | |
68 If source media contains multiple audio streams (for example DVDs), encode | |
69 the specified one. | |
2597 | 70 .TP |
2602 | 71 .B \-vid <video stream id> |
72 If source media contains multiple video streams, encode the specified one. | |
73 .TP | |
74 .B \-pp <value> | |
75 Apply a postprocess filter to enhance image quality. (values?) | |
2597 | 76 .TP |
2602 | 77 .B \-vc <codec name> |
78 Use specified codec (according to codecs.conf) for decoding input video | |
79 stream. | |
80 .TP | |
81 .B \-ac <codec name> | |
82 Use specified codec (according to codecs.conf) for decoding input audio | |
83 stream. | |
2597 | 84 .TP |
2666 | 85 .B \-vfm <video codec family> |
86 Force decoding by using a specific codec FAMILY, and FALLBACK to default | |
87 if failed. For examples see MPlayer manpage. | |
2602 | 88 .TP |
2666 | 89 .B \-afm <audio codec family> |
90 Force decoding by using a specific codec FAMILY, and FALLBACK to default | |
91 if failed. For examples see MPlayer manpage. | |
2597 | 92 .TP |
2628 | 93 .B \-include |
2674 | 94 specify config file to be parsed after the default |
95 .TP | |
96 .B \-mc\ seconds/5frame | |
97 maximum sync correction per 5 frames (in seconds). | |
98 Use -mc 0 to disable input A/V sync. | |
2628 | 99 .TP |
100 .B \-v | |
101 Increase verbosity. | |
102 .TP | |
2666 | 103 .B \-ovc <codecname> |
104 Encode with the given codec (codec names are from codecs.conf). | |
105 Examples: | |
106 | |
107 -ovc help get help | |
108 -ovc copy no encoding, just streamcopy | |
109 -ovc divx4 encode to DivX4 | |
110 .TP | |
111 .B \-oac <codecname> | |
112 Encode with the given codec (codec names are from codecs.conf). | |
113 Examples: | |
114 | |
115 -oac help get help | |
116 -oac copy no encoding, just streamcopy | |
117 -oac pcm encode to uncompressed PCM | |
118 -oac mp3lame encode to MP3 (using Lame) | |
119 .TP | |
2628 | 120 .B \-divx4opts |
121 If encoding to DivX4, you can specify its parameters here, like: | |
122 | |
2630 | 123 -divx4opts br=1800:deinterlace:key=250 |
2628 | 124 |
125 Available options: | |
126 | |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2729
diff
changeset
|
127 help get help |
2631 | 128 br=XXX specify bitrate in |
129 kbit <4-16000> or | |
130 bit <16001-24000000> | |
131 key=XXX maximum keyframe interval | |
132 (in frames) | |
133 deinterlace enable deinterlacing | |
2855 | 134 (don't use, DivX4 is buggy!) |
2631 | 135 q=XXXX quality (1-fastest, 5-best) |
136 min_quant=XXX minimum quantizer (0-32) | |
137 max_quant=XXX maximum quantizer (0-32) | |
138 rc_period=XXX rate control period | |
139 rc_reaction_period=XXX rate control | |
140 reaction period | |
141 rc_reaction_ratio=XXX rate control | |
142 reaction ratio | |
2628 | 143 |
144 .TP | |
145 .B \-lameopts | |
146 If encoding to MP3 with libmp3lame, you can specify its parameters here, like: | |
147 | |
2729 | 148 -lameopts br=192 |
2628 | 149 |
150 Available options: | |
151 | |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2729
diff
changeset
|
152 help get help |
2631 | 153 br=XXX specify bitrate in |
154 kbit <0-1024> | |
2664 | 155 q=XXX Quality |
156 (0-highest, 9-fastest) | |
2631 | 157 vbr=XXX variable bitrate method |
158 0=cbr | |
159 1=mt | |
160 2=rh(default) | |
161 3=abr | |
162 4=mtrh | |
163 cbr constant bitrate | |
164 mode=XXX 0=stereo | |
165 1=joint-stereo | |
166 2=dualchannel | |
167 3=mono | |
168 (default: auto) | |
169 padding=XXX 0=no | |
170 1=all | |
171 2=adjust | |
172 ratio=XXX compression ratio <1-100> | |
2628 | 173 |
174 .TP | |
2664 | 175 .B \-pass <1/2> |
176 With this you can encode 2pass DivX4 files. First encode with -pass 1, then | |
177 with the same parameters, encode with -pass 2. | |
178 .TP | |
179 .B \-ofps <fps> | |
180 The output file will have different frame/sec than the source. | |
181 .TP | |
2673 | 182 .B \-o <filename> |
183 Outputs to the given filename, instead of the default 'test.avi' . | |
184 .TP | |
2664 | 185 .B \-frames <number> |
186 Encode only given number of frames. | |
2602 | 187 .IP |
188 .SH FILES AND DIRECTORIES | |
189 .IP | |
190 .SH "EXAMPLES" | |
2664 | 191 .B Encoding DVD title #2 |
192 mencoder -dvd 2 -o title2.avi | |
193 .TP | |
194 .B Encoding from HTTP | |
195 mencoder http://mplayer.hq/example.avi -o example.avi | |
196 .TP | |
197 .B Encoding from pipe | |
198 rar p test-SVCD.rar | mencoder -divx4opts br=800 -ofps 24 -pass 1 -- - | |
2597 | 199 .IP |
200 .SH BUGS | |
201 Probably. Check the documentation. | |
202 | |
203 Bugreports should be addressed to the MPlayer-users mailing list | |
204 (mplayer-users@mplayerhq.hu) ! If you want to submit a bugreport | |
205 (which we love to receive!), please double-check the bugreports.html, and | |
206 tell us all that we need to know to identify your problem. | |
207 | |
208 .LP | |
209 .SH AUTHORS | |
210 Check documentation ! | |
211 | |
212 MPlayer is (C) 2000-2001 | |
213 .I Arpad Gereoffy <arpi@thot.banki.hu> | |
214 | |
215 This manpage is written and maintained by | |
216 .I Gabucino . | |
217 .LP | |
218 .SH STANDARD DISCLAIMER | |
219 Use only at your own risk! There may be errors and inaccuracies that could | |
220 be damaging to your system or your eye. Proceed with caution, and although | |
221 this is highly unlikely, the author doesn't take any responsibility for that! | |
222 .\" end of file |