1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/transcode.md

17 lines
428 B
Markdown
Raw Normal View History

# transcode
> Video stream processing tool that can change size of video or remove shaking
> and more
- Create transformation file (to remove camera shaking).
`transcode -J stabilize -i {{inputfile}}`
- Remove camera shaking (needs transformation file from step above).
`transcode -J transform -i {{inputfile}} -y xvid -o {{outputfile}}`
- Video resizing
`transcode -Z 640x480 -i {{inputfile}} -y xvid -o {{outputfile}}`