Compress 1080p 60fps Video to 720p 60fps with FFmpeg
The command for compressing a 1080 60fps video to 720 60fps using ffmpeg is:
ffmpeg -i input_video.mp4 -vf scale=1280:720 -r 60 -c:a copy output_video.mp4
Explanation:
-i input_video.mp4: specifies the input file.-vf scale=1280:720: sets the output resolution to 720p by scaling down the input video to 1280x720 pixels.-r 60: sets the output frame rate to 60fps.-c:a copy: copies the audio stream without re-encoding it.output_video.mp4: specifies the output file name.
原文地址: https://www.cveoy.top/t/topic/npoc 著作权归作者所有。请勿转载和采集!