-
Improve filesize with same quality?
Hello!
I am relatively new to FFmpeg, and I am currently using it to convert video recorded by common capture programs (Frapps, etc) for upload to Youtube. The source video is 1080p at roughly 60 GB/hour, encoded with MJPG video and PCM audio. I use these settings to convert:
ffmpeg -i "source.avi" -vcodec libx264 -sameq -acodec libmp3lame -ac 2 -ar 48000 -ab 192k final.aviOne thing I should mention is that I use these settings for multiple people, so that’s the main reason I’m using the “-sameq” setting – to ensure the final video is of the same resolution & quality. I record at 1080p, but my friends record at a variety of resolutions.
This works really well, resulting in same-resolution video but at closer to 4 GB/hour. However, because I have a pretty slow upload internet speed, it takes me much longer to upload the video (nearly 6x more) than to encode it.
So, my question: I was wondering if I could trade some more encoding time to get a similar-quality file but with a smaller filesize. In particular, I’ve heard that two-pass encoding can do this, but the demonstrations I found were difficult to wrap my head around. My current video encoding looks great, but any reduction in filesize would be helpful.
Thanks for your time!