Useful FFmpeg commands

These are some useful ffmpeg commands, post your idea on the sourceforge forum if you'd like to add something here. Copy and paste these commands into the app.

Resolution change command

-r 1 -loop 1 -i "{0}" -i "{1}" -acodec copy -r 1 -shortest -vf scale=1280:720 "{2}.mp4"

This command allows you to change the video resolution, which can result in shorter processing time.

Video to audio conversion command

-i "{1}" -b:a 192K -vn "{2}.mp3"

This command allows you to reverse the conversion. Now you'll be able to convert video into audio. IT WILL CONVERT AT 192KBPS bitrate, change this to higher or lower value if you want to.