mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-14 10:32:11 +03:00
3da76e4150
* Applying the snake_case convention throughout the repo - Also removing the file extension where not needed - Adding {{ }} on a few old pages * Addressing concerns - Added {{ }} where they were missed out - Removed spaces inside {{ }} - Reverting "file" to "filename" to make it clearer * Fixing the comments on nc page
534 B
534 B
transcode
Suite of command line utilities for transcoding video and audio codecs. And converting between formats.
- Create stabilisation file to be able to remove camera shakes:
transcode -J stabilize -i {{input_file}}
- Remove camera shakes after creating stabilisation file, transform video using xvid:
transcode -J transform -i {{input_file}} -y xvid -o {{output_file}}
- Resize the video to 640x480 pixels and convert to MPEG4 codec using xvid:
transcode -Z 640x480 -i {{input_file}} -y xvid -o {{output_file}}