From 8b60691580c712e893b5e4c34f05e64b7c9c42d4 Mon Sep 17 00:00:00 2001 From: 85pando <85pando@googlemail.com> Date: Wed, 21 Oct 2015 12:24:21 +0200 Subject: [PATCH] Fix transcode, better description, split commands --- pages/common/transcode.md | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/pages/common/transcode.md b/pages/common/transcode.md index d4a6b47a2..e4bf58681 100644 --- a/pages/common/transcode.md +++ b/pages/common/transcode.md @@ -1,14 +1,16 @@ # transcode -> Video stream processing with huge number of options. +> Video stream processing tool that can change size of video or remove shaking +> and more -- remove shaking from videos +- Create transformation file (to remove camera shaking). -``` -transcode -J stabilize -i {{source}} -transcode -J transform -i {{source}} -y xvid -o {{target}} -``` +`transcode -J stabilize -i {{inputfile}}` -- video resizing +- Remove camera shaking (needs transformation file from step above). -`transcode -Z 640x480 -i {{source}} -y xvid -o {{target}}` +`transcode -J transform -i {{inputfile}} -y xvid -o {{outputfile}}` + +- Video resizing + +`transcode -Z 640x480 -i {{inputfile}} -y xvid -o {{outputfile}}`