Hi. I have MP4 file (1.3 GB) that I want to compress, if I could, to 600-700 MB.
Could I use FFmpeg for that? What is the command line?
Thank you.
+ Reply to Thread
Results 1 to 6 of 6
-
-
try:
Best Video Converter
it is a bit outdated but it uses FFmpeg, and allows for batch conversion too.Last edited by videoAI; 4th Feb 2025 at 21:07.
-
@Jezzz: Your current video bitrate is 1750kb/s only. Compressing the filesize to to 600MB will leave you with something around 800 kb/s which is probably too low for acceptable AVC quality.
Anyway, here a 2-pass ffmpeg AVC (x264) proposal which you can try and see what you get:
Code:ffmpeg -i "your source" -c:v libx264 -b:v 800k -pass 1 -an -f null NUL ^ ffmpeg -i "your source" -c:v libx264 -b:v 800k -pass 2 -c:a copy output.mp4
Depends on your source as well (motion, details ....)Last edited by Sharc; 11th Jan 2025 at 04:10.
-
-
for x265 try
Code:ffmpeg -i "your source" -c:v libx265 -b:v 800k -x265-params pass=1 -an -f null NUL && ^ ffmpeg -i "your source" -c:v libx265 -b:v 800k -x265-params pass=2 -c:a copy output.mp4
Code:ffmpeg -i "your source" -c:v libx265 -b:v 800k -x265-params pass=1 -an -vf scale=-2:480 -f null NUL && ^ ffmpeg -i "your source" -c:v libx265 -b:v 800k -x265-params pass=2 -c:a copy -vf scale=-2:480 output.mp4
Last edited by Sharc; 12th Jan 2025 at 04:50.
Similar Threads
-
Error hardcoding srt file onto mp4 movie file using Shutter Encoder help?
By blackholesun85 in forum SubtitleReplies: 0Last Post: 24th Apr 2024, 16:31 -
MKV file, compress or downsize audio, what app or settings?
By PetitPois in forum Video ConversionReplies: 1Last Post: 2nd Feb 2024, 11:59 -
With AI restoration on the horizon how much should I compress an avi file?
By Bluelude1 in forum RestorationReplies: 2Last Post: 27th Jan 2024, 18:11 -
What can I use to compress a webm file without losing transparency?
By supercain in forum EditingReplies: 17Last Post: 24th May 2022, 19:59 -
Compress Mpeg2 to H.264 MP4
By Ferggue in forum Capturing and VCRReplies: 2Last Post: 10th Dec 2021, 04:46