2015-10-21 11:44:14 +02:00
|
|
|
# transcode
|
|
|
|
|
2016-10-12 16:58:04 +01:00
|
|
|
> Transcode video and audio codecs, and convert between media formats.
|
2021-10-23 23:45:06 +05:00
|
|
|
> More information: <https://manned.org/transcode>.
|
2015-10-21 11:44:14 +02:00
|
|
|
|
2022-06-27 12:23:12 +02:00
|
|
|
- Create stabilization file to be able to remove camera shakes:
|
2015-10-21 11:44:14 +02:00
|
|
|
|
2016-07-23 01:54:06 +05:30
|
|
|
`transcode -J stabilize -i {{input_file}}`
|
2015-11-11 09:03:29 +01:00
|
|
|
|
2022-06-27 12:23:12 +02:00
|
|
|
- Remove camera shakes after creating stabilization file, transform video using XviD:
|
2015-11-11 09:03:29 +01:00
|
|
|
|
2016-07-23 01:54:06 +05:30
|
|
|
`transcode -J transform -i {{input_file}} -y xvid -o {{output_file}}`
|
2015-10-21 11:44:14 +02:00
|
|
|
|
2021-08-15 19:59:09 +02:00
|
|
|
- Resize the video to 640x480 pixels and convert to MPEG4 codec using XviD:
|
2015-10-21 12:24:21 +02:00
|
|
|
|
2016-07-23 01:54:06 +05:30
|
|
|
`transcode -Z 640x480 -i {{input_file}} -y xvid -o {{output_file}}`
|