FFmpeg Usage Examples

By Ercan S. - 13/04/2025 - 0 comments

You can download FFmpeg by using link below.

https://ffmpeg.org/download.html

Cutting the Video/Audio file at certain intervals

ffmpeg.exe -ss 00:16:10 -to 00:18:26 -i <<input_file>> <<output_file>>

Changing video size and frame rate

ffmpeg.exe -i <<input_file>> -vf "scale=960:540,fps=25" <<output_file>>

Changing video size and frame rate by using Nvidia GPU

ffmpeg.exe -hwaccel cuda -i <<input_file>> -vf "scale=960:540,fps=25" <<output_file>>

Tags: ffmpeg