How to resize a video to make it smaller with FFmpeg
--
Music by Eric Matyas
https://www.soundimage.org
Track title: Underwater World
--
Chapters
00:00 Question
00:26 Accepted answer (Score 395)
01:49 Answer 2 (Score 71)
02:36 Thank you
--
Full question
https://superuser.com/questions/624563/h...
Accepted answer links:
[the ]: http://ffmpeg.org/ffmpeg-filters.html#sc...
[can download]: http://ffmpeg.org/download.html
[compile yourself]: http://ffmpeg.org/trac/ffmpeg/wiki/Compi...
Answer 2 links:
https://johnvansickle.com/ffmpeg/
https://ffmpeg.org/ffmpeg.html#filter_00...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#ffmpeg
#avk47
ACCEPTED ANSWER
Score 449
The most basic example is this:
ffmpeg -i input.avi -s 720x480 -c:a copy output.mkv
Using the scale
filter will provide more flexibility:
ffmpeg -i input.avi -filter:v scale=720:-1 -c:a copy output.mkv
The -1
will tell ffmpeg to automatically choose the correct height in relation to the provided width to preserve the aspect ratio. -1
can also be used for width if you provide a given height.
One downside of scale when using libx264
is that this encoder requires even values and scale may automatically choose an odd value resulting in an error: width or height not divisible by 2
. You can tell scale to choose an even value for a given height (720 in this example):
scale="trunc(oh*a/2)*2:720"
...or a given width (1280 in this example):
scale="1280:trunc(ow/a/2)*2"
Note that your ffmpeg build could complain about not recognizing -c
or -filter
options. It also may not support scale
. In that case you should use a newer ffmpeg, which you can download as a static build, or compile yourself.
ANSWER 2
Score 90
I use following commands to do rescaling for videos and images. For fixed width and height -
ffmpeg -i input.avi -vf scale="720:480" output.avi
and if you want to retain aspect ratio just give height as -1 and it will automatically resize based on the width -
ffmpeg -i input.avi -vf scale="720:-1" output.avi
If you want to scale based on input size e.g. lets say reduce the width/height to half you can do -
ffmpeg -i input.avi -vf scale="iw/2:ih/2" output.avi
NOTE :
iw : input width
ih : input height
Static build can be downloaded from - https://johnvansickle.com/ffmpeg/
Documentation : https://ffmpeg.org/ffmpeg.html#filter_005foption
ANSWER 3
Score 1
Using your GPU instead of CPU:
ffmpeg -hwaccel cuda -hwaccel_output_format cuda -i "input_file.mp4"
-c:a copy -vf "scale_cuda=-2:480" -c:v h264_nvenc "output_file.mp4"
You'll need an NVIDIA graphics card that supports CUDA hardware acceleration.
This worked for me (in Feb. 2024) using FFmpeg v6.0-essentials (from gyan.dev) on Windows 10 Pro with a NVIDIA GeForce GTX 960.
Details:
- From the NVIDIA FFmpeg Transcoding Guide:
-hwaccel cuda
chooses appropriate hw accelerator-hwaccel_output_format cuda
keeps the decoded frames in GPU memory-c:v h264_nvenc
selects the NVIDIA hardware accelerated H.264 encoderWithout the
-hwaccel cuda -hwaccel_output_format cuda
option, the decoded raw frames would be copied back to system memory via the PCIe bus, shown in figure 3. Later, the same image would be copied back to GPU memory via PCIe to encode on the GPU. These two additional transfers create latency due to the transfer time and will increase PCIe bandwidth occupancy.
See also:
- Using FFmpeg with NVIDIA GPU Hardware Acceleration
- FFmpeg documentation - filters
- FFmpeg documentation -
scale_cuda
-vf "scale_cuda=-2:480"
scales to a 480px height and a width calculated to keep the aspect ratio. The2
in-2
makes sure the width is divisible by 2 - see FFmpeg's scale options:
width, w
height, h
Set the output video dimension expression. Default value is the input dimension.
If the width or w value is 0, the input width is used for the output. If the height or h value is 0, the input height is used for the output.
If one and only one of the values is -n with n >= 1, the scale filter will use a value that maintains the aspect ratio of the input image, calculated from the other specified dimension. After that it will, however, make sure that the calculated dimension is divisible by n and adjust the value if necessary.
If both values are -n with n >= 1, the behavior will be identical to both values being set to 0 as previously detailed.
- ⚠️ Some formats or filters are not supported by the GPU, so you may need to use both GPU + CPU. See "Mixing CPU and GPU processing" in the NVIDIA FFmpeg Transcoding Guide:
Sometimes it might be necessary to mix CPU and GPU processing. For example you may need to decode on the CPU, because the format is unsupported on the GPU decoder, or because a filter is not available on the GPU. In those cases, you can’t use the
-hwaccel cuvid
or-hwaccel cuda
flag. Instead, you need to manage uploading the data from system to GPU memory using thehwupload_cuda
filter.In the example below, an H.264 stream is decoded on the GPU and downloaded to system memory since
-hwaccel cuvid
is not set. The fade filter is applied in system memory and the processed image uploaded to GPU memory using thehwupload_cuda
filter. Finally, the image is scaled usingscale_npp
and encoded on the GPU.ffmpeg -vsync 0 -c:v h264_cuvid -i input.264 -vf "fade,hwupload_cuda,scale_npp=1280:720" -c:v h264_nvenc output.264
Read this to learn more about scale_npp
vs. scale_cuda
.
Credits: this post, this one, and this one pointed me in the right direction to figure out the proper syntax for hardware acceleration with CUDA.