0% found this document useful (0 votes)
41 views2 pages

Ffmpeg - How To Resize Video To 720p - OneLinerHub

The document provides instructions on how to resize a video to 720p resolution using ffmpeg. It explains that the ffmpeg command uses the -i, -vf, scale, and -1 parameters to automatically calculate the width based on aspect ratio and set the height to 720 for the output video.

Uploaded by

Sathi Natarajan
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
41 views2 pages

Ffmpeg - How To Resize Video To 720p - OneLinerHub

The document provides instructions on how to resize a video to 720p resolution using ffmpeg. It explains that the ffmpeg command uses the -i, -vf, scale, and -1 parameters to automatically calculate the width based on aspect ratio and set the height to 720 for the output video.

Uploaded by

Sathi Natarajan
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

7/8/24, 11:07 PM Ffmpeg: How to resize video to 720p - OneLinerHub

Join

9951 explained code solutions for 126 technologies

Search for code...

Ffmpeg

How to resize video to 720p

ctrl + c

ffmpeg -i in.mp4 -vf scale=-1:720 out.mp4


youtube github

-i in.mp4 input video file

-vf apply specific video filters

scale= scale video

-1 width will be automatically calculated based on aspect ratio

720 scaling height

out.mp4 resulting video file

https://onelinerhub.com/ffmpeg/how-to-resize-video-to-720p 1/2
7/8/24, 11:07 PM Ffmpeg: How to resize video to 720p - OneLinerHub

Related
How to resize video to 1080p
How to resize video to 480p
How to resize video to 50% of original size
How to resize video

More of Ffmpeg
How to convert AV1 to H.264
How to use filter_complex to apply filters to videos
How to download m3u8 steam and save to mp4
How to list supported pixel formats
How to delay (sync with video) audio channel in video file
How to reduce background audio noise using arnndn (neural network models)
How to reduce background audio noise using afftdn
Convert video from H.265 to H.264 codec
How to set transparency for overlay image on video
Ffmpeg output to stdout

See more codes...

Fresh All techs GitHub Data & Programming blog by Denys Golotiuk

https://onelinerhub.com/ffmpeg/how-to-resize-video-to-720p 2/2

You might also like