]> git.phdru.name Git - audio-cdr-video.git/commitdiff
Add ff_catvideo - concatenate few video files into one
authorOleg Broytman <phd@phdru.name>
Mon, 3 Nov 2014 00:23:08 +0000 (03:23 +0300)
committerOleg Broytman <phd@phdru.name>
Mon, 3 Nov 2014 00:23:08 +0000 (03:23 +0300)
readme.txt
video/ff_catvideo [new file with mode: 0755]

index 397321d7747c3ca3e3cd6e37d00ebfc16e519565..f4746a1d4ad2989e61242b7843f1d69c89f320ec 100644 (file)
@@ -102,6 +102,7 @@ video
 
 Using ffmpeg:
 ff_encode - 1 and 2-pass encoding using different codecs.
+ff_catvideo - concatenate few video files into one.
 
 Using mplayer/mencoder:
 m_catvideo - concatenate few video files into one.
diff --git a/video/ff_catvideo b/video/ff_catvideo
new file mode 100755 (executable)
index 0000000..7abfbc3
--- /dev/null
@@ -0,0 +1,8 @@
+#! /bin/sh
+
+if [ -z "$1" ]; then
+   echo "Usage: $0 input.avi output.avi"
+   exit 1
+fi
+
+exec ffmpeg -i "$1" -c copy "$2"