Ask Your Question
0

Command line option for ffmgeg creating an output MP4 with 720p and 60fps for Youtube?

asked 2023-04-18 10:28:31 +0000

david gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2023-04-18 10:28:53 +0000

david gravatar image

updated 2023-04-18 10:31:13 +0000

To create an output MP4 video with 720p resolution and 60fps using FFmpeg, you can use the following command line option:

ffmpeg -i input.ext -vf "scale=1280:720" -r 60 -c:v libx264 -preset fast -crf 20 -c:a aac -b:a 128k output.mp4
  • r 60: Sets the output frame rate to 60fps.
  • vf "scale=1280:720": This video filter option scales the video to 720p resolution (1280x720 pixels).
edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

1 follower

Stats

Asked: 2023-04-18 10:28:31 +0000

Seen: 21 times

Last updated: Apr 18 '23