Skip to content

Instantly share code, notes, and snippets.

@dvlden
Last active March 17, 2024 04:52
Show Gist options
  • Save dvlden/b9d923cb31775f92fa54eb8c39ccd5a9 to your computer and use it in GitHub Desktop.
Save dvlden/b9d923cb31775f92fa54eb8c39ccd5a9 to your computer and use it in GitHub Desktop.
Convert video files to MP4 through FFMPEG

This is my personal list of functions that I wrote for converting mov files to mp4!

Command Flags

Flag Options Description
-codec:a libfaac, libfdk_aac, libvorbis Audio Codec
-quality best, good, realtime Video Quality
-b:a 128k, 192k, 256k, 320k Audio Bitrate
-codec:v mpeg4, libx264, libvpx-vp9 Video Codec
-b:v 1000, 2500, 5000, 8000 Video Bitrate
-vf scale -1:X Resize Video (X is height)
-qmin 10 -qmax 42 ??? https://gist.github.com/dvlden/b9d923cb31775f92fa54eb8c39ccd5a9#gistcomment-2972745
MP4 - 1080p

ffmpeg -i input.mov -preset slow -codec:a libfdk_aac -b:a 128k -codec:v libx264 -pix_fmt yuv420p -b:v 4500k -minrate 4500k -maxrate 9000k -bufsize 9000k -vf scale=-1:1080 output.mp4

MP4 - 720p

ffmpeg -i input.mov -preset slow -codec:a libfdk_aac -b:a 128k -codec:v libx264 -pix_fmt yuv420p -b:v 2500k -minrate 1500k -maxrate 4000k -bufsize 5000k -vf scale=-1:720 output.mp4

MP4 - 480p

ffmpeg -i input.mov -preset slow -codec:a libfdk_aac -b:a 128k -codec:v libx264 -pix_fmt yuv420p -b:v 1000k -minrate 500k -maxrate 2000k -bufsize 2000k -vf scale=-1:480 output.mp4

MP4 - 360p

ffmpeg -i input.mov -preset slow -codec:a libfdk_aac -b:a 128k -codec:v libx264 -pix_fmt yuv420p -b:v 750k -minrate 400k -maxrate 1000k -bufsize 1500k -vf scale=-1:360 output.mp4

@dvlden
Copy link
Author

dvlden commented Jul 17, 2019

Thank you for that summary. Highly helpful! @ADoncel

@theraw
Copy link

theraw commented Nov 25, 2019

nice thanks man

@dan-norris
Copy link

Thanks. If someone is getting libfdk_aac unknown lib error, just use "aac" instead

Also this one is for 240p
ffmpeg -i inputVideo.mp4 -threads 0 -preset slow -s 320x240 -c:v libx264 outputVideo.mp4

Thank you!

@arcanosam
Copy link

Thanks. If someone is getting libfdk_aac unknown lib error, just use "aac" instead

Also this one is for 240p
ffmpeg -i inputVideo.mp4 -threads 0 -preset slow -s 320x240 -c:v libx264 outputVideo.mp4

Thank you x2 😆

@eminyalcin
Copy link

eminyalcin commented May 13, 2020

[solved]
hi brothers. help me please. i make screen recorder in vb.net only for me. i use m.e. encoder. so my output file name is date hours.xesc.
i need to convert xesc to mp4 files. i use ffmpeg for all jpeg files in folder to mp4 file. this is work. but dont work this code.
i choose height and width for screen recorder.
please help me. i need basic code for convert

Dim args, girdi, cikti As String
girdi = "C:\video\ScreenCapture_12.05.2020 17.16.25.xesc" 'for example
cikti = "C:\videokayit\output.mp4" 'for example
args = "-i " & girdi & " -preset slow -codec:a libfdk_aac -b:a 128k -codec:v libx264 -pix_fmt yuv420p -b:v 1000k -minrate 500k -maxrate 2000k -bufsize 2000k -vf scale=854:480 " & cikti

    Dim proc As New Process
    Dim proci As New ProcessStartInfo
    proci.Arguments = args
    proci.FileName = My.Application.Info.DirectoryPath & "\ffmpeg.exe"
    proci.CreateNoWindow = True
    proci.UseShellExecute = False
    proci.WindowStyle = ProcessWindowStyle.Hidden
    proc.StartInfo = proci
    proc.Start()
    Do Until proc.HasExited = True
        Me.Text = "SAVING"
    Loop
    Me.Text = "Screen Recorder"
    MsgBox("Done") 

i think ffmpeg need good names.
example
ScreenCapture_11.05.2020 19.37.16.xesc is not work
ScreenCapture_11.05.202019.37.16.xesc is work.

new my code

Dim args As String
args = " -y -i C:/videokayit/dene.xesc -s 432x240 -b:v 384k -ac 2 -r 15 -c:v mpeg4 -ar 22050 -b:a 64k -c:a aac C:/videokayit/dene.mp4"
Dim proc As New Process
Dim proci As New ProcessStartInfo
proci.Arguments = args
proci.FileName = My.Application.Info.DirectoryPath & "\ffmpeg.exe"
proci.CreateNoWindow = True
proci.UseShellExecute = False
proci.WindowStyle = ProcessWindowStyle.Hidden
proc.StartInfo = proci

proc.Start()

Do Until proc.HasExited = True
Me.Text = "Saving"
Loop
Me.Text = "Screen recorder"

@vodolaz095
Copy link

i think there is typo

https://gist.github.com/dvlden/b9d923cb31775f92fa54eb8c39ccd5a9#mp4---480p

command should be ending with

scale=-1:480 output.mp4

not

scale=854:480 output.mp4

-1 instead of 854

@dvlden
Copy link
Author

dvlden commented Jul 21, 2021

@vodolaz095 Thank you! Fixed!

@FloStar3000
Copy link

Hi, overall very helpful, thank you very much! But for the command flags table, the video bitrates -b:v say 1000, 2500, 5000, 8000 by rather should be 1000k, 2500k, 5000k, 8000k. I encoded a video with 2500 bit and well, its kind ugly :D

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment