Resize resolusi video di Ubuntu
11 Feb 2012 Kategori: LinuxKadang, setelah convert video file dari .mkv menjadi .avi hasilnya filenya menjadi sangat besar. Nah, untuk resize video file itu tanpa mengurangi kualitas nya adalah dengan menggunakan ffmpeg.
-
Install ffmpeg
-
Jalankan perintah ini
$ffmpeg -i bigfish.avi -ab 56 -ar 22050 -b 500 -r 20 -s 640x480 bigfish1.avi
- Penjelasannya
ffmpeg : call the program
-i : input file
-ab : sets audio bitrate of the output file, in kbit/s
-ar : sets audio sampling rate of the output file, in Hz
-r : sets frame rate of the output file, in Hz (this value will effect the final size the most, so play with it to get the best result for yourself)
-s : sets resolution with your video
bigfish1.avi : output file name
This is it :).