Name:
Anonymous
2006-05-13 13:34
how does one encode 25min anime to h264/x264 and get an encoded file smaller than 130MB when not screwing up quality?
Name:
Anonymous
2006-05-13 16:36
You can use 587kbps for video if the audio is 128kbps.
"x264.exe" --pass 1 --bitrate 587 --stats "movie.stats" --ref 2 --mixed-refs --no-fast-pskip --bframes 3 --b-pyramid --bime --weightb --trellis 1 --analyse p8x8,b8x8,i4x4,p4x4 --progress --no-psnr --output NUL "source.avs"
"x264.exe" --pass 2 --bitrate 587 --stats "movie.stats" --ref 2 --mixed-refs --no-fast-pskip --bframes 3 --b-pyramid --bime --weightb --trellis 1 --analyse p8x8,b8x8,i4x4,p4x4 --progress --no-psnr --output "movie.mp4" "source.avs"