2015-10-21 10:44:14 +01:00
|
|
|
# transcode
|
|
|
|
|
2016-10-12 16:58:04 +01:00
|
|
|
> Transcode video and audio codecs, and convert between media 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
|
|
|
|
2021-08-15 18:59:09 +01: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
|
|
|
|
2021-08-15 18:59:09 +01: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}}`
|