summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMike Melanson <mike@multimedia.cx>2004-10-16 16:47:42 +0000
committerMike Melanson <mike@multimedia.cx>2004-10-16 16:47:42 +0000
commitf62e9435b7b496eed060d3b622649955a64e9ed5 (patch)
tree2eeb407571948926081018c7e51d7fbbc1e722b6 /doc
parentf7599d5ff0ba61c7281e59f1e41ab1441446ba42 (diff)
FAQ entry for manually changing fourcc
Originally committed as revision 3599 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'doc')
-rw-r--r--doc/faq.texi10
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/faq.texi b/doc/faq.texi
index 1b8f38bba2..ab0d466ce8 100644
--- a/doc/faq.texi
+++ b/doc/faq.texi
@@ -132,6 +132,16 @@ Choose a different codec with the -vcodec command line option.
Try a 'make distclean' in the ffmpeg source directory. If this does not help see
(@url{ffmpeg-bugreport.html}).
+@section How do I encode XviD or DIVX video with ffmpeg?
+
+Both XviD and DIVX (version 4+) are implementations of the ISO MPEG-4
+standard (note that there are many other coding formats that use this
+same standard). Thus, use '-vcodec mpeg4' to encode these formats. The
+default fourcc stored in a MPEG-4-coded file will be 'DIVX'. If you want
+a different fourcc, use the '-vtag' option. E.g., '-vtag xvid' will
+force the fourcc 'xvid' to be stored as the video fourcc rather than the
+default.
+
@chapter Development
@section Are there examples illustrating how to use the FFmpeg libraries, particularly libavcodec and libavformat ?