ffmpeg:video:resize:basic_resize_of_a_video
This is an old revision of the document!
ffmpeg - Video - Resize - Basic resize of a video
ffmpeg -i input.mp4 -vf "scale=1920:1080" -c:a copy output.mp4
NOTE:
- -i input.mp4: Specifies the input video file.
- -vf “scale=1920:1080”: Applies the scale filter to resize the video to 1920×1080 pixels.
- -c:a copy: Copies the media streams without re-encoding.
- output.mp4: Name of the output file.
ffmpeg/video/resize/basic_resize_of_a_video.1738188407.txt.gz · Last modified: 2025/01/29 22:06 by peter