2015-10-21 10:44:14 +01:00
|
|
|
# transcode
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
> Suite of command line utilities for transcoding video and audio codecs.
|
|
|
|
> And converting between formats.
|
2015-10-21 10:44:14 +01:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Create stabilisation file to be able to remove camera shakes:
|
2015-10-21 10:44:14 +01:00
|
|
|
|
2016-07-22 21:24:06 +01:00
|
|
|
`transcode -J stabilize -i {{input_file}}`
|
2015-11-11 08:03:29 +00:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Remove camera shakes after creating stabilisation file, transform video using xvid:
|
2015-11-11 08:03:29 +00:00
|
|
|
|
2016-07-22 21:24:06 +01:00
|
|
|
`transcode -J transform -i {{input_file}} -y xvid -o {{output_file}}`
|
2015-10-21 10:44:14 +01:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Resize the video to 640x480 pixels and convert to MPEG4 codec using xvid:
|
2015-10-21 11:24:21 +01:00
|
|
|
|
2016-07-22 21:24:06 +01:00
|
|
|
`transcode -Z 640x480 -i {{input_file}} -y xvid -o {{output_file}}`
|