Convert MKV Video to MP4 Format with FFMPEG

Convert MKV Video to MP4 Format with FFMPEG 

FFMPEG is A complete, cross-platform solution to record, convert and stream audio and video. I have been using it for a while, many kinds of work I've been doing, it works really great, if you want to play around with video editing, you don't need to install software, just download the FFMPEG archived file, extract to your desire location, put FFMPEG on your Path system, and start playing around with your command line.

Here's one of easy way to convert video with MKV format to MP4, because mp4 is really popular, you can play it almost anywhere, but i think this day MKV also has grown, but to be safe, i think if you have MKV video you can just convert it to MP4, using this command line.

ffmpeg -i video.mkv -c:v copy -c:a copy -acodec ac3 output.mp4

If you don't have the FFMPEG on your system, download it from this official website ffmpeg.org.

Comments

Popular posts from this blog

ERROR 1348 Column Password Is Not Updatable When Updating MySQL Root Password

Spring Kafka - how to use ReplyingKafkaTemplate send and reply synchronously

How To Create Spring Boot Project Using Netbeans

How To Connect SSH Using PEM Certificate On Windows

Step by Step How To Use cURL Library Using C From VS Code Windows