User Tools

Site Tools


rescale_video

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
rescale_video [2017/08/17 19:08] – created walkeradminrescale_video [2023/03/09 22:35] (current) – external edit 127.0.0.1
Line 1: Line 1:
 ====== Rescale Video ====== ====== Rescale Video ======
 +<color #db5f0b>Aug 2017</color>
 +\\ 
 +\\ 
 +
 +----
 +As well as transcoding video, we can rescale video, handy for converting HD to SD or UHD to HD. Rescaling can be done when transcoding, or as a step on its own. Please note, if you want to play video back at a certain size, ffplay can rescale the output video, without destroying the source.
 +\\ 
 +\\ 
 +
 +----
 +
 +This is how to rescale the video, where you specify the framesize:
 +\\ 
 +    ffmpeg -i input.mov -vf scale=320:240 output.mov
 +\\ 
 +
 +----
 +You can also rescale without specifying the exact aspect ratio, so here we have specified the width, and the height will be worked out automatically from the original aspect ratio.
 +\\ 
 +    ffmpeg -i input.mp4 -vf scale=320:-1 output.mp4
 +\\ 
 +\\ 
 +
 +----
 +
 +To transcode and rescale in one go, you can use the following example:
 +\\ 
 +    ffmpeg -i source.mov -vcodec h264 -b:v 50M -vf scale=960:540 dest.mp4
 +\\ 
 +\\ 
 +
  
rescale_video.1502993332.txt.gz · Last modified: 2023/03/09 22:35 (external edit)