Loading video…
Hook
More breakout videos from this creator.
Hmm. Converting .mkv file to a .mp4 file? I have a .mkv file. how do i convert to an .mp4 file? Now how do I fix this? Easy. $ ffmpeg Dash, -i input.mkv \ -filter_complex "[0:v]scale=1920:1080:flags=lanczos:force_original_aspect_ratio=decrease,pad=1920:1080:(ow-iw)/2:(oh-ih)/2:color=black,fps=30000/1001[v]" \ -map "[v]" -map "[a]" \ -c:v libx264 -preset medium -profile:v high -crf 23 -maxrate 5000k -bufsize 10000k \ -c:a aac -b:a 128k -ac 2 -ar 48000 \ -movflags \ -metadata:s:v:0 "language=und" \ -metadata:s:a:0 "language=und" \ -y output.mp4 Oh, duh. Obviously.