summaryrefslogtreecommitdiff
path: root/doc/faq.texi
diff options
context:
space:
mode:
authorNicolas George <nicolas.george@normalesup.org>2012-07-23 15:02:57 +0200
committerNicolas George <nicolas.george@normalesup.org>2012-07-28 18:16:55 +0200
commit0f8f9248471bbee5649c8efdc52d02c1cf93bba1 (patch)
treeec555ac2a6edd94fbb5f8f90a74d33b686eb1b0e /doc/faq.texi
parent2d6f442ca1b3f90c9fd9b230ce9c8379d04b9dd3 (diff)
faq: suggest the concat filter.
Diffstat (limited to 'doc/faq.texi')
-rw-r--r--doc/faq.texi11
1 files changed, 11 insertions, 0 deletions
diff --git a/doc/faq.texi b/doc/faq.texi
index 5d1106416d..430207d1de 100644
--- a/doc/faq.texi
+++ b/doc/faq.texi
@@ -252,6 +252,15 @@ the other; it can be done using the
@anchor{How can I concatenate video files}
@section How can I concatenate video files?
+There are several solutions, depending on the exact circumstances.
+
+@subsection Concatenating using filters
+
+FFmpeg has a @url{http://ffmpeg.org/ffmpeg.html#concat-1, @code{concat}}
+filter designed specifically for that, with examples in the documentation.
+
+@subsection Concatenating at the file level
+
A few multimedia containers (MPEG-1, MPEG-2 PS, DV) allow to concatenate
video by merely concatenating the files them.
@@ -291,6 +300,8 @@ cat intermediate1.mpg intermediate2.mpg |\
ffmpeg -f mpeg -i - -qscale:v 2 -c:v mpeg4 -acodec libmp3lame -q:a 4 output.avi
@end example
+@subsection Concatenating using raw audio and video
+
Similarly, the yuv4mpegpipe format, and the raw video, raw audio codecs also
allow concatenation, and the transcoding step is almost lossless.
When using multiple yuv4mpegpipe(s), the first line needs to be discarded