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