mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-04 21:55:33 +02:00
Fix transcode, better description, split commands
This commit is contained in:
parent
79552ed440
commit
8b60691580
1 changed files with 10 additions and 8 deletions
|
@ -1,14 +1,16 @@
|
||||||
# transcode
|
# transcode
|
||||||
|
|
||||||
> Video stream processing with huge number of options.
|
> Video stream processing tool that can change size of video or remove shaking
|
||||||
|
> and more
|
||||||
|
|
||||||
- remove shaking from videos
|
- Create transformation file (to remove camera shaking).
|
||||||
|
|
||||||
```
|
`transcode -J stabilize -i {{inputfile}}`
|
||||||
transcode -J stabilize -i {{source}}
|
|
||||||
transcode -J transform -i {{source}} -y xvid -o {{target}}
|
|
||||||
```
|
|
||||||
|
|
||||||
- video resizing
|
- Remove camera shaking (needs transformation file from step above).
|
||||||
|
|
||||||
`transcode -Z 640x480 -i {{source}} -y xvid -o {{target}}`
|
`transcode -J transform -i {{inputfile}} -y xvid -o {{outputfile}}`
|
||||||
|
|
||||||
|
- Video resizing
|
||||||
|
|
||||||
|
`transcode -Z 640x480 -i {{inputfile}} -y xvid -o {{outputfile}}`
|
||||||
|
|
Loading…
Add table
Reference in a new issue