Browse code

muxers.texi changes for mkv/webm options

alahuja authored on 2011/05/24 00:33:35
Showing 1 changed files
... ...
@@ -210,4 +210,67 @@ Alternatively you can write the command as:
210 210
 ffmpeg -benchmark -i INPUT -f null -
211 211
 @end example
212 212
 
213
+@section matroska
214
+
215
+Matroska container muxer.
216
+
217
+This muxer implements the matroska and webm container specs.
218
+
219
+The recognized metadata settings in this muxer are:
220
+
221
+@table @option
222
+
223
+@item title=@var{title name}
224
+Name provided to a single track
225
+@end table
226
+
227
+@table @option
228
+
229
+@item language=@var{language name}
230
+Specifies the language of the track in the Matroska languages form
231
+@end table
232
+
233
+@table @option
234
+
235
+@item STEREO_MODE=@var{mode}
236
+Stereo 3D video layout of two views in a single video track
237
+@table @option
238
+@item mono
239
+video is not stereo
240
+@item left_right
241
+Both views are arranged side by side, Left-eye view is on the left
242
+@item bottom_top
243
+Both views are arranged in top-bottom orientation, Left-eye view is at bottom
244
+@item top_bottom
245
+Both views are arranged in top-bottom orientation, Left-eye view is on top
246
+@item checkerboard_rl
247
+Each view is arranged in a checkerboard interleaved pattern, Left-eye view being first
248
+@item checkerboard_lr
249
+Each view is arranged in a checkerboard interleaved pattern, Right-eye view being first
250
+@item row_interleaved_rl
251
+Each view is constituted by a row based interleaving, Right-eye view is first row
252
+@item row_interleaved_lr
253
+Each view is constituted by a row based interleaving, Left-eye view is first row
254
+@item col_interleaved_rl
255
+Both views are arranged in a column based interleaving manner, Right-eye view is first column
256
+@item col_interleaved_lr
257
+Both views are arranged in a column based interleaving manner, Left-eye view is first column
258
+@item anaglyph_cyan_red
259
+All frames are in anaglyph format viewable through red-cyan filters
260
+@item right_left
261
+Both views are arranged side by side, Right-eye view is on the left
262
+@item anaglyph_green_magenta
263
+All frames are in anaglyph format viewable through green-magenta filters
264
+@item block_lr
265
+Both eyes laced in one Block, Left-eye view is first
266
+@item block_rl
267
+Both eyes laced in one Block, Right-eye view is first
268
+@end table
269
+@end table
270
+
271
+For example a 3D WebM clip can be created using the following command line:
272
+@example
273
+ffmpeg -i sample_left_right_clip.mpg -an -vcodec libvpx -metadata STEREO_MODE=left_right -y stereo_clip.webm
274
+@end example
275
+
213 276
 @c man end MUXERS