FFmpeg - Convert Any Video Format to MP4
76 words
1 minute
FFmpeg - Convert Any Video Format to MP4
Sebetulnya, perintahnya sangat mudah, tapi supaya saya lebih mudah mengingatnya, maka saya akan abadikan dalam artikel ini1:
ffmpeg -i inputfile.ogv -c:v libx264 -c:a aac outputfile.mp4Keterangan:
- -i inputfile.ogv adalah file video yang akan kita ubah formatnya, bisa video berformat .ogv, .mkv, .avi, .mov, dan lain-lain.
- -c
libx264 setting video codec ke libx264 untuk MP4 (video encoding H.264). - -c aac setting audio codec ke aac (advanced audio codec) yang umumnya digunakan untuk MP4.
- outputfile.mp4 output file MP4 yang diharapkan.
Footnotes
-
ChatGPT ↩
Support & Share
If this article helped you, please share or support!
FFmpeg - Convert Any Video Format to MP4
https://shangdi.github.io/posts/tech/convertvideoformat/Related PostsSmart
1
FFmpeg - Convert MP4 to GIF
ffmpegMy simple note in regards of converting video (MP4) to GIF.
2
Compressing and Speeding Up Video Using `ffmpeg`
ffmpegMy personal small note on how to resizing (compressing) and speeding up video file with only one small yet powerful open source tool: ffmpeg.
3
Screen Recorder with FFmpeg
ffmpegMy simple note in regards of screen recording using ffmpeg.
4
Mystiq - FFmpeg's GUI
mystiqDo you know FFmpeg? This is the GUI version of it. (If you don't like FFmpeg CLI version, this is the your right choice!)
5
Tools for Converting Picture Format
imagemagickThese are my curated tools (both CLI & GUI) for converting picture file to various formats.
Random PostsRandom











