diff --git a/DOCS/xml/en/faq.xml b/DOCS/xml/en/faq.xml
index c76580d003..fad65e99f6 100644
--- a/DOCS/xml/en/faq.xml
+++ b/DOCS/xml/en/faq.xml
@@ -981,16 +981,6 @@ Try .
-
-
-How can I play MPEG Layer 2 (MP2) audio files?
-
-
-You have to use .
-
-
-
-
Video/audio driver problems (vo/ao)
@@ -1322,7 +1312,7 @@ will dump the 5th title of the DVD into the file
-How can I create VCDs?
+How can I create (S)VCDs automatically?
Try the mencvcd script from the TOOLS
@@ -1331,6 +1321,64 @@ and even burn them directly to CD.
+
+
+How can I create SVCDs?
+
+
+Newer versions of MEncoder can directly
+generate MPEG-2 files that can be used as a base to create a (S)SVCD and
+are likely to be playable out of the box on all platforms (for example
+to share a video from a digital camcorder with your computer-illiterate
+friends).
+
+mencoder -of mpeg -oac toolame -toolameopts br=224 -srate 44100 \
+-af-adv force=1 -ovc lavc -mpegopts format=xsvcd -vf harddup -ofps 25 \
+-lavcopts vcodec=mpeg2video:mbd=2:keyint=25:vrc_buf_size=917:vrc_minrate=600:vbitrate=2500:vrc_maxrate=2500 \
+in.avi -o xsvcd.mpg
+
+This will convert the input file in.avi into
+the output file xsvcd.mpg, converting the
+audio with toolame at 224kbps
+and the video with libavcodec.
+
+Please note that in order to make the GOP structure SVCD compliant the
+ option should be 15 for PAL and 18 for NTSC,
+although very often files with much longer GOPs play correctly (25 should
+never lead to any problem).
+Also, even though leaving out should work in most
+cases PAL requires 25 and NTSC
+ 30000/1001.
+
+As far as the audio is concerned, SVCD only support MPEG-1 layer II audio,
+therefore you have to use either
+toolame,
+twolame, or as a last resort
+libavcodec's MPEG-1 layer II
+encoder (as its quality is far from being as good as the former two
+libraries).
+Both toolame and
+twolame follow the same syntax,
+so you depending on which one you managed to install, the example only
+requires a small chance, but if you need to use
+libavcodec's MPEG-1 layer II
+encoder, replace
+
+-oac toolame -toolameopts br=224
+
+by
+
+-oac lavc -lavcopts acodec=mp2:abitrate=224
+
+
+The resulting file xsvcd.mpg is an extended
+SVCD (that is why it is called xsvcd), mainly because it does not contain
+scan offsets, so if you need to generate an SVCD image out of it, you
+should pass it to
+vcdimager.
+
+
+
How can I join two video files?
@@ -1462,4 +1510,4 @@ above command.
-
+
\ No newline at end of file